Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'gcc-plugins-v5.12-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux

Pull gcc-plugins fixes from Kees Cook:
"Tiny gcc-plugin fixes for v5.12-rc2. These issues are small but have
been reported a couple times now by static analyzers, so best to get
them fixed to reduce the noise. :)

- Fix coding style issues (Jason Yan)"

* tag 'gcc-plugins-v5.12-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
gcc-plugins: latent_entropy: remove unneeded semicolon
gcc-plugins: structleak: remove unneeded variable 'ret'

+2 -3
+1 -1
scripts/gcc-plugins/latent_entropy_plugin.c
··· 524 524 while (bb != EXIT_BLOCK_PTR_FOR_FN(cfun)) { 525 525 perturb_local_entropy(bb, local_entropy); 526 526 bb = bb->next_bb; 527 - }; 527 + } 528 528 529 529 /* 4. mix local entropy into the global entropy variable */ 530 530 perturb_latent_entropy(local_entropy);
+1 -2
scripts/gcc-plugins/structleak_plugin.c
··· 170 170 static unsigned int structleak_execute(void) 171 171 { 172 172 basic_block bb; 173 - unsigned int ret = 0; 174 173 tree var; 175 174 unsigned int i; 176 175 ··· 199 200 initialize(var); 200 201 } 201 202 202 - return ret; 203 + return 0; 203 204 } 204 205 205 206 #define PASS_NAME structleak