Fixed improper access of g_pidhash.

This commit is contained in:
Fotis Panagiotopoulos
2023-04-04 18:00:36 -06:00
committed by patacongo
parent 553fe83abf
commit 95af4b35cf
+3 -1
View File
@@ -83,6 +83,7 @@ static int nxtask_assign_pid(FAR struct tcb_s *tcb)
FAR struct tcb_s **pidhash;
pid_t next_pid;
int hash_ndx;
void *temp;
int i;
/* NOTE:
@@ -160,8 +161,9 @@ retry:
/* Release resource for original g_pidhash, using new g_pidhash */
kmm_free(g_pidhash);
temp = g_pidhash;
g_pidhash = pidhash;
kmm_free(temp);
/* Let's try every allowable pid again */