Skip to content
Snippets Groups Projects
Commit 6c2167b6 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Prevent an off-by-one in a allocated buffer in glob_match_url() - detected by

coverity.com
parent 18be9882
No related branches found
No related tags found
No related merge requests found
......@@ -496,7 +496,8 @@ char *glob_match_url(char *filename, URLGlob *glob)
* be longer than the URL we use. We allocate a good start size, then
* we need to realloc in case of need.
*/
allocsize=strlen(filename);
allocsize=strlen(filename)+1; /* make it at least one byte to store the
trailing zero */
target = malloc(allocsize);
if(NULL == target)
return NULL; /* major failure */
......@@ -548,7 +549,9 @@ char *glob_match_url(char *filename, URLGlob *glob)
}
if(appendlen + stringlen >= allocsize) {
char *newstr;
allocsize = (appendlen + stringlen)*2;
/* we append a single byte to allow for the trailing byte to be appended
at the end of this function outside the while() loop */
allocsize = (appendlen + stringlen)*2 + 1;
newstr=realloc(target, allocsize);
if(NULL ==newstr) {
free(target);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment