# HG changeset patch # User Tim Ringenbach # Date 1101407726 0 # Node ID d4e9ff2edc4e195d69944eb3ab8cd556adc2391d # Parent a2bbfdcc325de8104f48f78e16ecbc536ed2c3f0 [gaim-migrate @ 11405] This should fix segfault bug 1072604. Oops. committer: Tailor Script diff -r a2bbfdcc325d -r d4e9ff2edc4e src/protocols/yahoo/yahoo_filexfer.c --- a/src/protocols/yahoo/yahoo_filexfer.c Thu Nov 25 16:09:47 2004 +0000 +++ b/src/protocols/yahoo/yahoo_filexfer.c Thu Nov 25 18:35:26 2004 +0000 @@ -391,7 +391,7 @@ } if (pkt->service == YAHOO_SERVICE_P2PFILEXFER) { - if (strcmp("FILEXFER", service) != 0) { + if (service && (strcmp("FILEXFER", service) != 0)) { gaim_debug_misc("yahoo", "unhandled service 0x%02x", pkt->service); return; }