imagehlp: Set Index in ImageAddCertificate function.

This commit is contained in:
Piotr Caban 2011-05-03 18:50:07 +02:00 committed by Alexandre Julliard
parent f3f59d2cf8
commit 0cd94ac51f
1 changed files with 2 additions and 4 deletions

View File

@ -392,10 +392,6 @@ BOOL WINAPI ImageAddCertificate(
/* If we've already got a security directory, find the end of it */
if ((r) && (sd_VirtualAddr != 0))
{
offset = 0;
index = 0;
count = 0;
/* Check if the security directory is at the end of the file.
If not, we should probably relocate it. */
if (GetFileSize(FileHandle, NULL) != sd_VirtualAddr + size)
@ -479,6 +475,8 @@ BOOL WINAPI ImageAddCertificate(
if (!IMAGEHLP_RecalculateChecksum(FileHandle))
return FALSE;
if(Index)
*Index = index;
return TRUE;
}