shell32/tests: Remove an unneeded HeapAlloc.

This commit is contained in:
Paul Vriens 2009-11-27 16:28:57 +01:00 committed by Alexandre Julliard
parent 1c6f813bc7
commit e5d83ac625
1 changed files with 30 additions and 39 deletions

View File

@ -320,13 +320,10 @@ static void CheckWindowCreated(const char *winName, int closeWindow, int testPar
static void CheckFileExistsInProgramGroups(const char *nameToCheck, int shouldExist, int isGroup,
const char *groupName, int testParams)
{
char *path;
char path[MAX_PATH];
DWORD attributes;
int len;
path = HeapAlloc(GetProcessHeap(), 0, MAX_PATH);
if (path != NULL)
{
if (testParams & DDE_TEST_COMMON)
lstrcpyA(path, CommonPrograms);
else
@ -365,12 +362,6 @@ static void CheckFileExistsInProgramGroups(const char *nameToCheck, int shouldEx
}
}
}
HeapFree(GetProcessHeap(), 0, path);
}
else
{
ok (FALSE, "Could not Allocate Path Buffer\n");
}
}
/* Create Group Test.