1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-07-07 18:04:15 -04:00

Free some memory

This commit is contained in:
Immae 2014-06-23 12:05:49 +02:00
parent d668d15081
commit c3847eec34
2 changed files with 3 additions and 0 deletions

View File

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

View File

@ -137,6 +137,7 @@ _ui_get_idle_time(void)
XFree(info);
return result;
}
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);