mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-17 18:45:10 +00:00
set ptr to NULL after free
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@773 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
parent
5a91ebca4e
commit
7173afcbdf
@ -27,7 +27,7 @@ struct _timed_thread
|
|||||||
unsigned int interval_usecs; /* firing interval in microseconds */
|
unsigned int interval_usecs; /* firing interval in microseconds */
|
||||||
};
|
};
|
||||||
|
|
||||||
/* linked list of created threadsa */
|
/* linked list of created threads */
|
||||||
typedef struct _timed_thread_list
|
typedef struct _timed_thread_list
|
||||||
{
|
{
|
||||||
timed_thread *p_timed_thread;
|
timed_thread *p_timed_thread;
|
||||||
@ -212,6 +212,7 @@ timed_thread_destroy_registered_threads (void)
|
|||||||
p_next = p_node->next;
|
p_next = p_node->next;
|
||||||
timed_thread_destroy (p_node->p_timed_thread, p_node->addr_of_p_timed_thread);
|
timed_thread_destroy (p_node->p_timed_thread, p_node->addr_of_p_timed_thread);
|
||||||
free (p_node);
|
free (p_node);
|
||||||
|
p_node=NULL:
|
||||||
}
|
}
|
||||||
|
|
||||||
p_timed_thread_list_head = NULL;
|
p_timed_thread_list_head = NULL;
|
||||||
|
Loading…
Reference in New Issue
Block a user