You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/iniparser/files/iniparser-4.0-out-of-bounds...

12 lines
330 B

--- a/src/iniparser.c
+++ b/src/iniparser.c
@@ -663,7 +663,7 @@
while (fgets(line+last, ASCIILINESZ-last, in)!=NULL) {
lineno++ ;
len = (int)strlen(line)-1;
- if (len==0)
+ if (len<=0)
continue;
/* Safety check against buffer overflows */
if (line[len]!='\n') {