[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#656839: libosip2 upload to unstable



peter green wrote:
Would you object to a NMU based on the version currently in unstable that just fixes the FTBFS?
I have now prepared a NMU based on the version currently in sid that only fixes the FTBFS. The debdiff is attatched.

libosip2 maintainers are you ok with this NMU?
diff -u libosip2-3.3.0/debian/changelog libosip2-3.3.0/debian/changelog
--- libosip2-3.3.0/debian/changelog
+++ libosip2-3.3.0/debian/changelog
@@ -1,3 +1,10 @@
+libosip2 (3.3.0-1.1) unstable; urgency=low
+
+  * Non maintainer upload
+  * Fix FTBFS with format security error (Closes: #646449)
+
+ -- Peter Michael Green <plugwash@p10link.net>  Sat, 25 Feb 2012 01:30:26 +0000
+
 libosip2 (3.3.0-1) unstable; urgency=low
 
   * New upstream release
only in patch2:
unchanged:
--- libosip2-3.3.0.orig/src/osipparser2/osip_message_parse.c
+++ libosip2-3.3.0/src/osipparser2/osip_message_parse.c
@@ -847,7 +847,7 @@
     sep_boundary = (char *) osip_malloc (len + sizeof (boundary_prefix));
 	if (sep_boundary==NULL)
 		return OSIP_NOMEM;
-    sprintf (sep_boundary, boundary_prefix);
+    sprintf (sep_boundary,"%s", boundary_prefix);
     if (ct_param->gvalue[0] == '"' && ct_param->gvalue[len - 1] == '"')
       strncat (sep_boundary, ct_param->gvalue + 1, len - 2);
     else

Reply to: