Module: wine Branch: master Commit: 02b531b302dffdb559657484f40246ee767adb77 URL: http://source.winehq.org/git/wine.git/?a=commit;h=02b531b302dffdb559657484f4...
Author: James Hawkins jhawkins@codeweavers.com Date: Sat May 3 21:12:41 2008 -0500
msi: Fix a typo.
---
dlls/msi/helpers.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/msi/helpers.c b/dlls/msi/helpers.c index 0dc02b4..223cacd 100644 --- a/dlls/msi/helpers.c +++ b/dlls/msi/helpers.c @@ -1098,7 +1098,7 @@ static INT_PTR cabinet_notify(FDINOTIFICATIONTYPE fdint, PFDINOTIFICATION pfdin) if (lstrcmpW(f->File, data->file->File)) return 0;
- size = lstrlenW(data->destination) + lstrlenW(file) + 2; + size = lstrlenW(data->destination) + lstrlenW(data->file->FileName) + 2; path = msi_alloc(size * sizeof(WCHAR)); lstrcpyW(path, data->destination); PathAddBackslashW(path);