[Pkg-voip-commits] r3819 - in wengophone/trunk/debian: . patches patches/generic

cavedon-guest at alioth.debian.org cavedon-guest at alioth.debian.org
Tue Jul 24 09:53:48 UTC 2007


Author: cavedon-guest
Date: 2007-07-24 09:53:48 +0000 (Tue, 24 Jul 2007)
New Revision: 3819

Added:
   wengophone/trunk/debian/patches/generic/exosip-fix-empty-notify.patch
Modified:
   wengophone/trunk/debian/changelog
   wengophone/trunk/debian/patches/series
Log:
Added patch exosip-fix-empty-notify.patch from Mikael Magnusson.
(Closes #427930)


Modified: wengophone/trunk/debian/changelog
===================================================================
--- wengophone/trunk/debian/changelog	2007-07-24 09:44:51 UTC (rev 3818)
+++ wengophone/trunk/debian/changelog	2007-07-24 09:53:48 UTC (rev 3819)
@@ -12,9 +12,11 @@
     + generic/memory-dump-fix-double-dump.patch to avoid creation of two
       core dumps
   * Created wengophone-dbg package with debug symbols.
-  * Included AUTHORS file in documentation. 
+  * Included AUTHORS file in documentation.
+  * Added patch generic/exosip-fix-empty-notify.patch from Mikael Magnusson.
+    (Closes #427930)
 
- -- Ludovico Cavedon <cavedon at sssup.it>  Tue, 24 Jul 2007 11:43:03 +0200
+ -- Ludovico Cavedon <cavedon at sssup.it>  Tue, 24 Jul 2007 11:50:55 +0200
 
 wengophone (2.1.1.dfsg0-1) unstable; urgency=low
 

Added: wengophone/trunk/debian/patches/generic/exosip-fix-empty-notify.patch
===================================================================
--- wengophone/trunk/debian/patches/generic/exosip-fix-empty-notify.patch	                        (rev 0)
+++ wengophone/trunk/debian/patches/generic/exosip-fix-empty-notify.patch	2007-07-24 09:53:48 UTC (rev 3819)
@@ -0,0 +1,16 @@
+--- ./wifo/eXosip/src/udp.c.orig	2007-06-27 13:10:55.000000000 +0200
++++ ./wifo/eXosip/src/udp.c	2007-06-27 13:12:11.000000000 +0200
+@@ -1676,8 +1676,11 @@
+     strncpy(je->sip_event,event_hdr->hvalue,sizeof(je->sip_event));
+     if (je->msg_body)
+       osip_free(je->msg_body);
+-    
+-    je->msg_body = osip_strdup(body->body);
++
++    if (body)
++      je->msg_body = osip_strdup(body->body);
++    else
++      je->msg_body = osip_strdup("");
+     
+     if (je->msg_body == NULL) {
+       eXosip_event_free(je);

Modified: wengophone/trunk/debian/patches/series
===================================================================
--- wengophone/trunk/debian/patches/series	2007-07-24 09:44:51 UTC (rev 3818)
+++ wengophone/trunk/debian/patches/series	2007-07-24 09:53:48 UTC (rev 3819)
@@ -2,6 +2,7 @@
 head/qobjectthreadsafe-fix-qt42.patch
 generic/cmake-fix-ENABLE_CRASHREPORT.patch
 generic/cmake-static-coredumper.patch
+generic/exosip-fix-empty-notify.patch
 generic/memory-dump-tmp-path.patch
 generic/memory-dump-fix-double-dump.patch
 generic/portaudio-avoid-unnecessary-inclusion.patch




More information about the Pkg-voip-commits mailing list