Skip to content
Snippets Groups Projects
Commit cd6f74aa authored by Morris Jette's avatar Morris Jette
Browse files

Correction to uninitialized variable

Correction to commit 5a4b9e0c
parent 5a4b9e0c
No related branches found
No related tags found
No related merge requests found
...@@ -585,7 +585,7 @@ void ...@@ -585,7 +585,7 @@ void
list_free(struct list_ *list, list_free(struct list_ *list,
void (*f)(void *)) void (*f)(void *))
{ {
struct list_ *l; struct list_ *l = NULL;
if (l == NULL) if (l == NULL)
return; return;
......
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