mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 07:38:48 +00:00
Sanity check for a nullptr
This commit is contained in:
+3
-1
@@ -6812,7 +6812,9 @@ gb_internal CallArgumentData check_call_arguments_proc_group(CheckerContext *c,
|
|||||||
for_array(i, procs) {
|
for_array(i, procs) {
|
||||||
Entity *proc = procs[i];
|
Entity *proc = procs[i];
|
||||||
Type *t = base_type(proc->type);
|
Type *t = base_type(proc->type);
|
||||||
if (t->kind != Type_Proc) continue;
|
if (t == nullptr || t->kind != Type_Proc) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
TypeProc *pt = &t->Proc;
|
TypeProc *pt = &t->Proc;
|
||||||
if (pt->param_count == 0) {
|
if (pt->param_count == 0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user