diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2010-06-14 23:39:03 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2010-06-14 23:39:03 (GMT) |
commit | 1e2aada1204d3da43fe075478df5bfaaece937b0 (patch) | |
tree | 99eb321808ddcc0364928adf9266f32a201d2b59 /src/panels | |
parent | af7d2ea327d27200ad151d3e1ba0ee6d51b1ff62 (diff) |
Made the program stronger by handling more errors.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@167 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/panels')
-rw-r--r-- | src/panels/symbols.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panels/symbols.c b/src/panels/symbols.c index 534afee..d24bedf 100644 --- a/src/panels/symbols.c +++ b/src/panels/symbols.c @@ -518,7 +518,7 @@ static bool find_parent_for_routine(GtkTreeStore *store, const GBinRoutine *rout char *saveptr; /* Ctx. interne de découpage */ namespace = g_binary_routine_get_namespace(routine); - if (routine == NULL) return false; + if (namespace == NULL) return false; string = g_openida_type_to_string(namespace); |