[MPlayer-cvslog] r22424 - trunk/loader/win32.c

reimar subversion at mplayerhq.hu
Sat Mar 3 18:25:18 CET 2007


Author: reimar
Date: Sat Mar  3 18:25:18 2007
New Revision: 22424

Modified:
   trunk/loader/win32.c

Log:
The original asm code for the stub returned 0, restore that behaviour.


Modified: trunk/loader/win32.c
==============================================================================
--- trunk/loader/win32.c	(original)
+++ trunk/loader/win32.c	Sat Mar  3 18:25:18 2007
@@ -5291,12 +5291,13 @@ struct libs libraries[]={
     LL(shlwapi)
 };
 
-static void ext_stubs(void)
+static WIN_BOOL WINAPI ext_stubs(void)
 {
     volatile int idx = 0xdeadabcd;
     // make sure gcc does not do eip-relative call or something like that
     volatile void (*my_printf)(char *, char *) = (void *)0xdeadfbcd;
     my_printf("Called unk_%s\n", export_names[idx]);
+    return 0;
 }
 
 #define MAX_STUB_SIZE 0x60



More information about the MPlayer-cvslog mailing list