30 lines
780 B
Diff
30 lines
780 B
Diff
|
From 28d979c3824d0e90e14ba7f7be679e66fb53c851 Mon Sep 17 00:00:00 2001
|
||
|
From: Jakub Filak <jfilak@redhat.com>
|
||
|
Date: Wed, 8 Oct 2014 12:37:24 +0200
|
||
|
Subject: [PATCH 3/7] 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 dd79054..3ac859d 100644
|
||
|
--- a/src/lib/ureport.c
|
||
|
+++ b/src/lib/ureport.c
|
||
|
@@ -339,6 +339,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))
|
||
|
--
|
||
|
2.1.0
|
||
|
|