[Pkg-voip-commits] r5754 - in /misdn-kernel/branches/maniac-guest/debian: changelog patches/debug_off patches/series

maniac-guest at alioth.debian.org maniac-guest at alioth.debian.org
Tue May 20 11:57:50 UTC 2008


Author: maniac-guest
Date: Tue May 20 11:57:50 2008
New Revision: 5754

URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=5754
Log:
Added patch from upstream.'fix an skb leak in mISDN_dt_new_frame when debugging is disabled'

Added:
    misdn-kernel/branches/maniac-guest/debian/patches/debug_off
Modified:
    misdn-kernel/branches/maniac-guest/debian/changelog
    misdn-kernel/branches/maniac-guest/debian/patches/series

Modified: misdn-kernel/branches/maniac-guest/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-voip/misdn-kernel/branches/maniac-guest/debian/changelog?rev=5754&op=diff
==============================================================================
--- misdn-kernel/branches/maniac-guest/debian/changelog (original)
+++ misdn-kernel/branches/maniac-guest/debian/changelog Tue May 20 11:57:50 2008
@@ -5,6 +5,8 @@
   * added patch to use perms compatible with asterisk
   * added CONFIGS variable to rules-template. Removed exports
   * added MISDNVERSION variable to rules-template.
+  * added patch from upstream (debug_off): 
+    fix an skb leak in mISDN_dt_new_frame when debugging is disabled
 
  -- Victor Seva <linuxmaniac at torreviejawireless.org>  Wed,  9 Jan 2008 18:00:44 +0100
 

Added: misdn-kernel/branches/maniac-guest/debian/patches/debug_off
URL: http://svn.debian.org/wsvn/pkg-voip/misdn-kernel/branches/maniac-guest/debian/patches/debug_off?rev=5754&op=file
==============================================================================
--- misdn-kernel/branches/maniac-guest/debian/patches/debug_off (added)
+++ misdn-kernel/branches/maniac-guest/debian/patches/debug_off Tue May 20 11:57:50 2008
@@ -1,0 +1,21 @@
+From: gkelleter <gkelleter at datus.com>
+Date: Fri, 25 Apr 2008 14:32:49 +0000 (+0200)
+Subject: fix an skb leak in mISDN_dt_new_frame when debugging is disabled
+X-Git-Url: http://git.misdn.org/?p=mISDN.git;a=commitdiff_plain;h=bfb93df53545d8ac2943f906b387289b192bcfe4
+
+fix an skb leak in mISDN_dt_new_frame when debugging is disabled
+---
+
+diff --git a/drivers/isdn/hardware/mISDN/core.c b/drivers/isdn/hardware/mISDN/core.c
+index e5fcba6..9e542b2 100644
+--- a/drivers/isdn/hardware/mISDN/core.c
++++ b/drivers/isdn/hardware/mISDN/core.c
+@@ -644,6 +644,8 @@ mISDN_dt_new_frame(mISDNstack_t *stack, enum mISDN_dt_type type, struct sk_buff
+ {
+ 	if (dt_enabled)
+ 		dt_new_frame(stack, type, skb, duplicate_skb);
++	else if (!duplicate_skb && skb)
++		kfree_skb(skb);
+ }
+ 
+ void

Modified: misdn-kernel/branches/maniac-guest/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-voip/misdn-kernel/branches/maniac-guest/debian/patches/series?rev=5754&op=diff
==============================================================================
--- misdn-kernel/branches/maniac-guest/debian/patches/series (original)
+++ misdn-kernel/branches/maniac-guest/debian/patches/series Tue May 20 11:57:50 2008
@@ -2,3 +2,4 @@
 hfcmulti_bigendian
 #2_6_23_fix
 perms_dev_mISDN
+debug_off




More information about the Pkg-voip-commits mailing list