Skip to content
Snippets Groups Projects
Commit 595d3e0c authored by Federico Montesino Pouzols's avatar Federico Montesino Pouzols
Browse files

fix unchecked copy into fixed size buffer strncpy/strncat, re #13951

parent b32c410f
No related merge requests found
...@@ -209,8 +209,9 @@ void file_compress(file, mode) ...@@ -209,8 +209,9 @@ void file_compress(file, mode)
FILE *in; FILE *in;
gzFile out; gzFile out;
strcpy(outfile, file); strncpy(outfile, file, MAX_NAME_LEN-1);
strcat(outfile, GZ_SUFFIX); outfile[MAX_NAME_LEN-1] = '\0';
strncat(outfile, GZ_SUFFIX, MAX_NAME_LEN - strlen(outfile) - 1);
in = fopen(file, "rb"); in = fopen(file, "rb");
if (in == NULL) { if (in == NULL) {
......
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