diff options
Diffstat (limited to 'results/scraper/launchpad-without-comments/1753437')
| -rw-r--r-- | results/scraper/launchpad-without-comments/1753437 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/results/scraper/launchpad-without-comments/1753437 b/results/scraper/launchpad-without-comments/1753437 new file mode 100644 index 00000000..77ffeff4 --- /dev/null +++ b/results/scraper/launchpad-without-comments/1753437 @@ -0,0 +1,14 @@ +pc-bios/s390-ccw/libc: size_t should be unsigned + +qemu/pc-bios/s390-ccw/libc.c:82]: (style) Unsigned variable 'num_idx' can't be negative so it is unnecessary to test it. + +Source code is + + + while (num_idx >= 0) { + +but + + size_t num_idx = 1; /* account for NUL */ + +So there is no escape from the while loop. \ No newline at end of file |