From 03e466b8378685ade8c58392f946900279f63f75 Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Wed, 27 Feb 2008 16:47:51 +0000 Subject: [PATCH] msi: Fix the buffer size calculation in msi_build_createsql_prelude. --- dlls/msi/database.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msi/database.c b/dlls/msi/database.c index 425486e5654..bad40b8011a 100644 --- a/dlls/msi/database.c +++ b/dlls/msi/database.c @@ -348,7 +348,7 @@ static LPWSTR msi_build_createsql_prelude(LPWSTR table) static const WCHAR create_fmt[] = {'C','R','E','A','T','E',' ','T','A','B','L','E',' ','`','%','s','`',' ','(',' ',0}; - size = sizeof(create_fmt) + lstrlenW(table) - 2; + size = sizeof(create_fmt)/sizeof(create_fmt[0]) + lstrlenW(table) - 2; prelude = msi_alloc(size * sizeof(WCHAR)); if (!prelude) return NULL;