Commit 2a8b31d1 authored by Ge van Geldorp's avatar Ge van Geldorp Committed by Alexandre Julliard

winebuild: Reserve enough space for null function pointer.

parent a6df1639
......@@ -202,7 +202,7 @@ static void output_exports( FILE *outfile, DLLSPEC *spec )
for (i = spec->base; i <= spec->limit; i++)
{
ORDDEF *odp = spec->ordinals[i];
if (!odp) fprintf( outfile, "\t.long 0\n" );
if (!odp) fprintf( outfile, "\t%s 0\n", get_asm_ptr_keyword() );
else switch(odp->type)
{
case TYPE_EXTERN:
......
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