From 416bd78bae87641b3da48349c55d9e7f3b193ff4 Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Fri, 4 Dec 2009 19:44:20 +0300 Subject: [PATCH] nasm.c: Use copy_filename to set error message file To prevent errname buffer overwrite we should use copy_filename instead of strcpy. Signed-off-by: Cyrill Gorcunov --- nasm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nasm.c b/nasm.c index ac2adde..28a6086 100644 --- a/nasm.c +++ b/nasm.c @@ -722,7 +722,7 @@ static bool process_arg(char *p, char *q) break; case 'Z': /* error messages file */ - strcpy(errname, param); + copy_filename(errname, param); break; case 'F': /* specify debug format */ -- 2.7.4