From a8aed02f1e67be19634cedf6be6d6f469a9e0fb6 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Tue, 31 Dec 2002 12:35:41 +0000 Subject: Make sure zip_path is null-terminated, since it's on the stack --- PC/getpathp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/PC/getpathp.c b/PC/getpathp.c index 4930ad8..ed0a755 100644 --- a/PC/getpathp.c +++ b/PC/getpathp.c @@ -467,6 +467,7 @@ calculate_path(void) strncpy(zip_path, dllpath, MAXPATHLEN); else /* use name of executable program */ strncpy(zip_path, progpath, MAXPATHLEN); + zip_path[MAXPATHLEN] = '\0'; len = strlen(zip_path); if (len > 4) { zip_path[len-3] = 'z'; /* change ending to "zip" */ -- cgit v0.12