Skip to content

Commit

Permalink
Fixes Github #30: Segfault after updating from 1.8 to 1.10 (reported …
Browse files Browse the repository at this point in the history
…by vakuum)
  • Loading branch information
lwindolf committed Feb 28, 2015
1 parent fac9b92 commit 86f263b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ To be released

* Fixes launching URLs in Firefox 36+
(reported by Geoffrey Leach)
* Fixes Github #30: Segfault after updating from 1.8 to 1.10
(reported by vakuum)

* Fixes typo in Italian translation.

Expand Down
3 changes: 3 additions & 0 deletions src/db.c
Original file line number Diff line number Diff line change
Expand Up @@ -1588,6 +1588,9 @@ db_node_find (nodePtr node, gpointer id)
{
GSList *iter;

if (!id)
return;

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

Expand Down

0 comments on commit 86f263b

Please sign in to comment.