diff options
Diffstat (limited to 'src/adb.c')
-rw-r--r-- | src/adb.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -973,7 +973,7 @@ int adb_c_adb(struct apk_ostream *os, struct adb *db, struct apk_trust *t) adb_c_header(os, db); adb_c_block(os, ADB_BLOCK_ADB, db->adb); - if (t) adb_trust_write_signatures(t, db, NULL, os); + adb_trust_write_signatures(t, db, NULL, os); return apk_ostream_error(os); } @@ -1032,6 +1032,8 @@ int adb_trust_write_signatures(struct apk_trust *trust, struct adb *db, struct a size_t siglen; int r; + if (IS_ERR_OR_NULL(trust)) return PTR_ERR(trust); + if (!vfy) { vfy = alloca(sizeof *vfy); memset(vfy, 0, sizeof *vfy); |