Commit 0cd94ac5 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

imagehlp: Set Index in ImageAddCertificate function.

parent f3f59d2c
......@@ -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;
}
......
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