diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2012-11-25 22:00:02 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2012-11-25 22:00:02 (GMT) |
commit | 671cacb80fd438a5f4d51db853ed08d7a6edb9ab (patch) | |
tree | 3081bc41bca43137cca75e52fcbcf81798e8b4e2 /src/arch/dalvik/decomp | |
parent | 40d448bc4734882ca4a2580b481738f4720ebabe (diff) |
Fortified Chrysalide a little bit against wrong APK files.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@291 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/dalvik/decomp')
-rw-r--r-- | src/arch/dalvik/decomp/const.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/dalvik/decomp/const.c b/src/arch/dalvik/decomp/const.c index 2e63b36..47a859e 100644 --- a/src/arch/dalvik/decomp/const.c +++ b/src/arch/dalvik/decomp/const.c @@ -95,6 +95,7 @@ GDecInstruction *dalvik_decomp_instr_const_str(const GArchInstruction *instr, GD format = G_DEX_FORMAT(g_object_get_data(G_OBJECT(ctx), "format")); value = get_string_from_dex_pool(format, index); + if (value == NULL) return NULL; str = g_str_expression_new(value); |