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:
parent
677c489be1
commit
4f35575dd6
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue