Fix warning about uninitialised variable

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5087 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
pabs3 2007-04-16 07:34:17 +00:00
parent 677c489be1
commit 4f35575dd6

View file

@ -21,7 +21,7 @@ void __declspec(dllexport) GetName(HWND hwndParent, int string_size,
char* GetAccountTypeHelper(BOOL CheckTokenForGroupDeny)
{
char *group;
char *group = NULL;
HANDLE hToken = NULL;
struct group
{