Fixed improper access of g_pidhash.

This commit is contained in:
Fotis Panagiotopoulos 2023-04-05 00:40:04 +03:00 committed by patacongo
parent 553fe83abf
commit 95af4b35cf

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 */