Skip to content

Commit c125c6f

Browse files
committed
Minor fix.
1 parent 85b7f30 commit c125c6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/thirdparty/DynamicHooks/include/conventions/x86MsFastcall.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ int x86MsFastcall::GetPopSize()
9898
{
9999
int iPopSize = 0;
100100

101-
for(unsigned int i=2; i <= m_vecArgTypes.size() - 1; i++)
101+
for(unsigned int i=2; i < m_vecArgTypes.size(); i++)
102102
{
103103
iPopSize += GetDataTypeSize(m_vecArgTypes[i], m_iAlignment);
104104
}

0 commit comments

Comments
 (0)