2377 | # define BACKTRACES |
2378 | #endif |
2379 | |
2380 | #undef BACKTRACES |
Why? If the backtrace code is broken or otherwise not useful (I've never had it work on Wine, but perhaps I'm using wrong toolchain settings), we should just delete it. If it's useful, we can keep it. |
3604 | { |
3605 | char *msg; |
3606 | |
3607 | if (!error) |
3608 | return; |
OK: minor optimization (not doing unnecessary work), harmless. Ideally this would be a separate commit though. |
3615 | (LPSTR) &msg, 0, NULL); |
3616 | if (msg) |
3617 | { |
3618 | dbus_set_error (error, "win32.error", "%s", msg); |
OK: this is the actual bug fix. |
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.