1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-29 19:56:07 -04:00

Check for null before freeing X11info, removed free current resource

This commit is contained in:
James Booth 2014-06-24 22:23:53 +01:00
parent c3847eec34
commit 83fc97621c
2 changed files with 3 additions and 2 deletions

View File

@ -241,7 +241,6 @@ _get_most_available_resource(PContact contact)
resources = g_list_next(resources);
}
free(resources);
free(current);
return highest;
}

View File

@ -137,7 +137,9 @@ _ui_get_idle_time(void)
XFree(info);
return result;
}
XFree(info);
if (info != NULL) {
XFree(info);
}
// if no libxss or xss idle time failed, use profanity idle time
#endif
gdouble seconds_elapsed = g_timer_elapsed(ui_idle_time, NULL);