Skip to content

Commit 6154b7d

Browse files
committed
Fix style again
1 parent 203af90 commit 6154b7d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

external/source/exploits/cve-2014-4113/cve-2014-4113/cve-2014-4113.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,10 +160,10 @@ BOOL find_and_replace_member(PMYWORD pdwStructure, MYWORD dwCurrentValue, MYWORD
160160
// dwMask out the reference count.
161161
dwCurrentValue &= dwMask;
162162

163-
// Scan the structure for any occurrence of CurrentValue.
164-
for (dwIndex = 0; dwIndex < dwMaxSize; dwIndex++)
163+
// Scan the structure for any occurrence of dwCurrentValue.
164+
for (dwIndex = 0; dwIndex < dwMaxSize; dwIndex++)
165165
{
166-
if ((pdwStructure[dwIndex] & dwMask) == dwCurrentValue)
166+
if ((pdwStructure[dwIndex] & dwMask) == dwCurrentValue)
167167
{
168168
// And finally, replace it with NewValue.
169169
pdwStructure[dwIndex] = dwNewValue;

0 commit comments

Comments
 (0)