Skip to content
Snippets Groups Projects
Commit 42ec69eb authored by Ondřej Surý's avatar Ondřej Surý
Browse files

Fix buffer overflow when appending / to absolute cwd path and the cwd path is...

Fix buffer overflow when appending / to absolute cwd path and the cwd path is exactly n*64 characters long
parent dc4edd79
No related branches found
No related tags found
No related merge requests found
......@@ -134,10 +134,10 @@ int main(int argc, char **argv)
{
// Get absolute path to cwd
size_t cwbuflen = 64;
char *cwbuf = malloc((cwbuflen + 1) * sizeof(char));
char *cwbuf = malloc((cwbuflen + 2) * sizeof(char));
while (getcwd(cwbuf, cwbuflen) == 0) {
cwbuflen += 64;
cwbuf = realloc(cwbuf, (cwbuflen + 1) * sizeof(char));
cwbuf = realloc(cwbuf, (cwbuflen + 2) * sizeof(char));
}
cwbuflen = strlen(cwbuf);
......
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