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

Fix errors in log.c

This commit is contained in:
Michael Vetter 2020-02-22 09:27:04 +01:00
parent f055faf31c
commit c08d0e9ce8

View File

@ -188,6 +188,7 @@ void
log_close(void)
{
g_string_free(mainlogfile, TRUE);
mainlogfile = NULL;
g_time_zone_unref(tz);
if (logp) {
fclose(logp);
@ -239,7 +240,7 @@ log_level_from_string(char *log_level)
static void
_rotate_log_file(void)
{
gchar *log_file = mainlogfile->str;
gchar *log_file = strdup(mainlogfile->str);
size_t len = strlen(log_file);
gchar *log_file_new = malloc(len + 4);
int i = 1;