summaryrefslogtreecommitdiff
path: root/debian/patches/0028-Avoid-a-possible-NULL-pointer-dereference.patch
blob: 796272278cf09e270aeb9027a9a5f8e3e9d2bf19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: Gaurav <g.gupta@samsung.com>
Date: Tue, 18 Feb 2014 11:47:43 +0800
Subject: Avoid a possible NULL pointer dereference

For https://bugzilla.gnome.org/show_bug.cgi?id=708355
---
 xmlmodule.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xmlmodule.c b/xmlmodule.c
index 7fe5bc2..50ed666 100644
--- a/xmlmodule.c
+++ b/xmlmodule.c
@@ -115,7 +115,7 @@ xmlModuleSymbol(xmlModulePtr module, const char *name, void **symbol)
 {
     int rc = -1;
 
-    if ((NULL == module) || (symbol == NULL)) {
+    if ((NULL == module) || (symbol == NULL) || (name == NULL)) {
         __xmlRaiseError(NULL, NULL, NULL, NULL, NULL, XML_FROM_MODULE,
                         XML_MODULE_OPEN, XML_ERR_FATAL, NULL, 0, 0,
                         NULL, NULL, 0, 0, "null parameter\n");