Sanity check for a nullptr

This commit is contained in:
gingerBill
2024-07-01 12:24:46 +01:00
parent 42ff711114
commit a2b23de0a7

View File

@@ -6812,7 +6812,9 @@ gb_internal CallArgumentData check_call_arguments_proc_group(CheckerContext *c,
for_array(i, procs) {
Entity *proc = procs[i];
Type *t = base_type(proc->type);
if (t->kind != Type_Proc) continue;
if (t == nullptr || t->kind != Type_Proc) {
continue;
}
TypeProc *pt = &t->Proc;
if (pt->param_count == 0) {