From fb4901759be436dba014ae424b473952fdd2f577 Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Sun, 12 Aug 2007 18:30:43 +0200 Subject: [PATCH] msi: Allocate 1 byte more buffer. --- dlls/msi/tests/install.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msi/tests/install.c b/dlls/msi/tests/install.c index e96f7dce56b..778d05ac099 100644 --- a/dlls/msi/tests/install.c +++ b/dlls/msi/tests/install.c @@ -1733,7 +1733,7 @@ static BOOL pf_exists(LPCSTR file) static void delete_pfmsitest_files(void) { SHFILEOPSTRUCT shfl; - CHAR path[MAX_PATH+10]; + CHAR path[MAX_PATH+11]; lstrcpyA(path, PROG_FILES_DIR); lstrcatA(path, "\\msitest\\*");