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

reimar subversion at mplayerhq.hu
Sat Jan 16 16:02:50 CET 2010


Author: reimar
Date: Sat Jan 16 16:02:49 2010
New Revision: 30319

Log:
100l, forgot to change the "magic" value in the stub also in the place replacing it.

Modified:
   trunk/loader/win32.c

Modified: trunk/loader/win32.c
==============================================================================
--- trunk/loader/win32.c	Sat Jan 16 14:59:59 2010	(r30318)
+++ trunk/loader/win32.c	Sat Jan 16 16:02:49 2010	(r30319)
@@ -5355,7 +5355,7 @@ static void* add_stub(void)
     memcpy(answ, ext_stubs, MAX_STUB_SIZE);
     for (i = 0; i < MAX_STUB_SIZE - 3; i++) {
       int *magic = (int *)(answ + i);
-      if (*magic == 0xdeadabcd) {
+      if (*magic == 0x0deadabc) {
         *magic = pos;
         found |= 1;
       }


More information about the MPlayer-cvslog mailing list