- Fabian Keil ran clang on the (lib)curl code, found a bunch of warnings and

contributed a range of patches to fix them.
This commit is contained in:
Daniel Stenberg
2009-06-10 21:26:11 +00:00
parent 9d18c0b156
commit 352177090f
10 changed files with 12 additions and 16 deletions

View File

@@ -405,7 +405,7 @@ Curl_cookie_add(struct SessionHandle *data,
}
ptr=semiptr+1;
while(ptr && *ptr && ISBLANK(*ptr))
while(*ptr && ISBLANK(*ptr))
ptr++;
semiptr=strchr(ptr, ';'); /* now, find the next semicolon */