summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-16 15:02:49 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-16 15:02:49 +0000
commite09b799ade1f19edf88c1c3271efe89c05a8af02 (patch)
tree2268d1d220eae5dacb5d3b81cf6bbe7d572b16e6
parent8568e701eae19f7a6dfc50bdb1159972dd474b51 (diff)
downloadmpv-e09b799ade1f19edf88c1c3271efe89c05a8af02.tar.bz2
mpv-e09b799ade1f19edf88c1c3271efe89c05a8af02.tar.xz
100l, forgot to change the "magic" value in the stub also in the place replacing it.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30319 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--loader/win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/win32.c b/loader/win32.c
index 70070832f6..1902c8266f 100644
--- a/loader/win32.c
+++ b/loader/win32.c
@@ -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;
}