Skip to content
Snippets Groups Projects
Commit 6a23adcb authored by Moe Jette's avatar Moe Jette
Browse files

Add logic to insure xfree isn't called more than once.

parent 0daa5909
No related branches found
No related tags found
No related merge requests found
......@@ -264,6 +264,7 @@ void slurm_xfree(void **item, const char *file, int line, const char *func)
int *p = (int *)*item - 2;
/* magic cookie still there? */
xmalloc_assert(p[0] == XMALLOC_MAGIC);
p[0] = 0; /* make sure xfree isn't called twice */
MALLOC_LOCK();
free(p);
MALLOC_UNLOCK();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment