msi: Fix the buffer size calculation in msi_build_createsql_prelude.

This commit is contained in:
Rob Shearman 2008-02-27 16:47:51 +00:00 committed by Alexandre Julliard
parent d6bb9e76b3
commit 03e466b837
1 changed files with 1 additions and 1 deletions

View File

@ -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;