Commit 9db0e072 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Remove a lot of fixed length buffers.

parent ae8682f2
......@@ -194,6 +194,8 @@ typedef struct tagMSIPACKAGE
UINT loaded_components;
struct tagMSIFILE *files;
UINT loaded_files;
LPWSTR ActionFormat;
LPWSTR LastAction;
} MSIPACKAGE;
#define MSIHANDLETYPE_ANY 0
......
......@@ -416,6 +416,8 @@ UINT MSI_OpenPackageW(LPCWSTR szPackage, MSIPACKAGE **pPackage)
package->loaded_folders = 0;
package->loaded_components= 0;
package->loaded_files = 0;
package->ActionFormat = NULL;
package->LastAction = NULL;
/* OK, here is where we do a slew of things to the database to
* prep for all that is to come as a package */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment