Warning: DOMDocument::loadXML() [function.DOMDocument-loadXML]: Input is not proper UTF-8, indicate encoding !
Bytes: 0xE9 0x76 0x69 0x73 in Entity, line: 37 in /srv/lkml.org/scripts/getmail.php on line 206
Warning: XSLTProcessor::transformToXml() expects parameter 1 to be object, boolean given in /srv/lkml.org/scripts/getmail.php on line 209
This message generated a parse failure. Raw output follows here. Please use 'back' to navigate.
From devnull@lkml.org Mon Oct 13 05:18:48 2008
Delivery-date: Mon, 03 Apr 2006 14:36:29 +0200
Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932393AbWDBQj7 (ORCPT ); Sun, 2 Apr 2006 12:39:59 -0400
Received: from cac94-1-81-57-151-96.fbx.proxad.net ([81.57.151.96]:54428 "EHLO localhost") by vger.kernel.org with ESMTP id S932391AbWDBQju (ORCPT ); Sun, 2 Apr 2006 12:39:50 -0400
Received: from localhost ([127.0.0.1]) by localhost with esmtp (Exim 4.60) (envelope-from ) id 1FQ5cD-0001Mr-Vk; Sun, 02 Apr 2006 18:39:50 +0200
Message-Id: <442FFE55.4010500@free.fr>
Date: Sun, 02 Apr 2006 18:39:49 +0200
From: matthieu castet
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20060205 Debian/1.7.12-1.1
X-Accept-Language: fr-fr, en, en-us
Mime-Version: 1.0
To: greg@kroah.com
Cc: linux-kernel@vger.kernel.org, usbatm@lists.infradead.org, linux-usb-devel@lists.sourceforge.net, ueagle
Subject: [PATCH 3/4] UEAGLE : null pointer dereference fix
Content-Type: multipart/mixed; boundary="------------050005020508060106040803"
Sender: linux-kernel-owner@vger.kernel.org
Precedence: bulk
X-Mailing-List: linux-kernel@vger.kernel.org
This is a multi-part message in MIME format.
--------------050005020508060106040803
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
Hi,
this patch fix potential null pointer dereference. Found by the
Coverity checker.
Signed-off-by: Duncan Sands
Signed-off-by: Matthieu CASTET
--------------050005020508060106040803
Content-Type: text/plain;
name="ueagle3.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: inline;
filename="ueagle3.patch"
Index: ueagle-atm.c
===================================================================
--- ueagle-atm.c (révision 265)
+++ ueagle-atm.c (révision 266)
@@ -1673,7 +1673,7 @@
sc = kzalloc(sizeof(struct uea_softc), GFP_KERNEL);
if (!sc) {
- uea_err(INS_TO_USBDEV(sc), "uea_init: not enough memory !\n");
+ uea_err(usb, "uea_init: not enough memory !\n");
return -ENOMEM;
}
--------------050005020508060106040803--
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/