From: <ev...@us...> - 2006-07-03 18:28:18
|
Revision: 16413 Author: evands Date: 2006-07-03 11:28:13 -0700 (Mon, 03 Jul 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16413&view=rev Log Message: ----------- As discussed on gaim-devel, use _exit() rather than exit() when exiting the dns resolver forked process. This matches the call used in gaim's own proxy.c and prevents a (fairly ridiculous) crash in the atexit() handler installed by Apple's Address Book framework on OS X. Modified Paths: -------------- trunk/src/protocols/gg/lib/libgadu.c Modified: trunk/src/protocols/gg/lib/libgadu.c =================================================================== --- trunk/src/protocols/gg/lib/libgadu.c 2006-07-03 17:07:03 UTC (rev 16412) +++ trunk/src/protocols/gg/lib/libgadu.c 2006-07-03 18:28:13 UTC (rev 16413) @@ -357,7 +357,7 @@ write(pipes[1], &a, sizeof(a)); - exit(0); + _exit(0); } close(pipes[1]); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |