Skip to content

Commit

Permalink
Fixes Github lwindolf#30: Segfault after updating from 1.8 to 1.10 (r…
Browse files Browse the repository at this point in the history
…eported by vakuum)
  • Loading branch information
lwindolf authored and rich-coe committed Feb 7, 2016
1 parent 99f4c9a commit f866703
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ To be released
(patch by mozbugbox)
* Fixes Github #79: RTL ordering of Back/Forward icons
(reported by GreenLunar)
* Fixes Github #30: Segfault after updating from 1.8 to 1.10
(reported by vakuum)
* Fixes all defects reported by Coverity scan
* Simplied external browser handling. Now Liferea only supports
the gtk_show_uri() launch mechanism for the system default browser
Expand Down
2 changes: 1 addition & 1 deletion src/db.c
Original file line number Diff line number Diff line change
Expand Up @@ -1588,7 +1588,7 @@ db_node_find (nodePtr node, gpointer id)
{
GSList *iter;

if (g_str_equal (node->id, (gchar *)id))
if (id && g_str_equal (node->id, (gchar *)id))
return TRUE;

iter = node->children;
Expand Down

0 comments on commit f866703

Please sign in to comment.