winebuild: Reserve enough space for null function pointer.

This commit is contained in:
Ge van Geldorp 2006-07-10 08:58:47 +02:00 committed by Alexandre Julliard
parent a6df16396a
commit 2a8b31d162
1 changed files with 1 additions and 1 deletions

View File

@ -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: