Diff between 581edd089595a3a06d4c0dae78af6b0d2a4dc4af and 360ecd96fed73867e7b96ab06a6f8ac390ec814a
Changed Files
| File | Additions | Deletions | Status |
| android/client/if-hl.c | +4 | -0 | modified |
Full Patch
diff --git a/android/client/if-hl.c b/android/client/if-hl.c
index e0818ba..bd05671 100644
--- a/android/client/if-hl.c
+++ b/android/client/if-hl.c
@@ -201,6 +201,10 @@ static void register_application_p(int argc, const char **argv)
reg.number_of_mdeps = atoi(argv[6]);
reg.mdep_cfg = malloc(reg.number_of_mdeps * sizeof(bthl_mdep_cfg_t));
+ if (!reg.mdep_cfg) {
+ haltest_error("malloc failed\n");
+ return;
+ }
mdep_argc_init = 7;
for (i = 0; i < reg.number_of_mdeps; i++) {