Buffer overflow fixes

This commit is contained in:
2024-07-09 17:05:53 -04:00
parent 21b3d4197a
commit 282bd0dc10
3 changed files with 3 additions and 3 deletions

View File

@ -154,7 +154,7 @@ int uri_parse( const char *uri, uri_parts *parsed )
strncpy( parsed->port, port, sizeof(parsed->port) );
}
if ( path )
strncat( parsed->path, path, sizeof(parsed->path) );
strncat( parsed->path, path, sizeof(parsed->path)-1 );
return ret;
}