diff options
Diffstat (limited to 'graphics/dc20ctrl/files/patch-ag')
-rw-r--r-- | graphics/dc20ctrl/files/patch-ag | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/graphics/dc20ctrl/files/patch-ag b/graphics/dc20ctrl/files/patch-ag deleted file mode 100644 index afa1b69661ec..000000000000 --- a/graphics/dc20ctrl/files/patch-ag +++ /dev/null @@ -1,13 +0,0 @@ -diff -ru work/dc20ctrl-0.4/convert_pic.c dc20ctrl-0.4/convert_pic.c ---- work/dc20ctrl-0.4/convert_pic.c Tue Feb 17 09:19:46 1998 -+++ convert_pic.c Mon Feb 5 18:43:44 2001 -@@ -166,7 +166,8 @@ - * Remove the extension (.cmt) from the file name - */ - -- strcpy(file, base_name); -+ if (strlcpy(file, base_name, sizeof(file)) >= sizeof(file)) -+ return -1; - if ((extp = strrchr(file, '.')) != NULL) - *extp = '\0'; - |