Displaying 1 result from an estimated 1 matches for "b324daa".
2011 Oct 01
2
Debugging a "X Error of failed request: BadAlloc"
...tp://bugs.winehq.org/show_bug.cgi?id=24921
To get to the bottom of this, I compiled Wine from git sources. However, running this under a debugger isn't as simple as I thought. The best results so far I get with this patch applied:
Code:
diff --git a/tools/winewrapper b/tools/winewrapper
index b324daa..1045c51 100755
--- a/tools/winewrapper
+++ b/tools/winewrapper
@@ -102,4 +102,4 @@ fi
# and run the application
-exec "$WINELOADER" "$@"
+exec gdb --args "$WINELOADER" "$@"
This works reasonable so far. Probably I should run winedbg, but for some rea...