Fix a copy&paste bug in get_buffer_pe.

This commit is contained in:
Rein Klazes 2005-03-31 15:28:54 +00:00 committed by Alexandre Julliard
parent 6714664dee
commit b59484de49
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ static SEGPTR get_buffer_pe(int size)
HeapFree( GetProcessHeap(), 0, pe_buffer );
}
pe_buffer = HeapAlloc( GetProcessHeap(), 0, (pe_len = size) );
pe_buffer_seg = MapLS( he_buffer );
pe_buffer_seg = MapLS( pe_buffer );
return pe_buffer_seg;
}