http://bugs.winehq.org/show_bug.cgi?id=15534
--- Comment #24 from Vincent Povirk madewokherd@gmail.com 2009-06-29 23:45:20 --- Hey, neat, I added that X11DRV_CLIPBOARD_ReadSelectionData line. Didn't expect to actually see it anywhere. It suggests that some other program you're pasting data from is being slow. I don't think it's likely to be relevant.
Anyway, I think you should try to get a backtrace. You should be able to get one by doing this: * Make sure your Wine has debugging symbols (either build it from source or install the appropriate debug package). * Start DNS. * Start winedbg. * Type "info process" to get a list of running processes. * Attach winedbg to the running DNS process (something like "attach 0x12" if the pid of the process is 12). This should freeze the process. * Type "set $BreakOnFirstChance = 0" so that winedbg will only break for unhandled exceptions, not for all of them (most are harmless). * Type "cont". * Wait for the program to crash.
When it crashes, winedbg should automatically stop the program and print out a backtrace. This can take a while to finish, so be sure to wait for "WineDbg>" prompt to return before assuming it's done.