30 lines
794 B
Diff
30 lines
794 B
Diff
From adfc3e694448174cd3589f0c0dd93c86f9692f90 Mon Sep 17 00:00:00 2001
|
|
From: Jakub Filak <jfilak@redhat.com>
|
|
Date: Wed, 8 Oct 2014 12:37:24 +0200
|
|
Subject: [LIBREPORT PATCH 96/97] lib: fix a bug in ureport response parser
|
|
|
|
Revealed by coverity
|
|
|
|
Related to rhbz1139987
|
|
|
|
Signed-off-by: Jakub Filak <jfilak@redhat.com>
|
|
---
|
|
src/lib/ureport.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/lib/ureport.c b/src/lib/ureport.c
|
|
index 7e71c51..0e0472e 100644
|
|
--- a/src/lib/ureport.c
|
|
+++ b/src/lib/ureport.c
|
|
@@ -340,6 +340,7 @@ parse_solution_from_json_list(struct json_object *list,
|
|
continue;
|
|
|
|
cause = json_object_get_string(struct_elem);
|
|
+ if (!cause)
|
|
continue;
|
|
|
|
if (!json_object_object_get_ex(list_elem, "note", &struct_elem))
|
|
--
|
|
1.8.3.1
|
|
|