summaryrefslogtreecommitdiff
path: root/src/irc/core
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-05-18 08:46:56 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-05-18 08:46:56 +0000
commitae25925a1fdceeddff25076b5ff557e14f1aa4cb (patch)
tree7c417ca056f58f2720c41c1493f41ad3ed3d4fc7 /src/irc/core
parenta0aa6493682fc7b12a83352857abd3697a1ea677 (diff)
downloadirssi-ae25925a1fdceeddff25076b5ff557e14f1aa4cb.zip
Some logging fixes. Flood checking had a memory leak. Query had a small
memory leak. Text buffer fixes. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@226 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/irc/core')
-rw-r--r--src/irc/core/ignore.c1
-rw-r--r--src/irc/core/irc-log.c19
-rw-r--r--src/irc/core/query.c1
3 files changed, 8 insertions, 13 deletions
diff --git a/src/irc/core/ignore.c b/src/irc/core/ignore.c
index 76c1d368..ac4f67ca 100644
--- a/src/irc/core/ignore.c
+++ b/src/irc/core/ignore.c
@@ -251,7 +251,6 @@ static void read_ignores(void)
IGNORE_REC *rec;
CONFIG_NODE *node;
GSList *tmp;
- char *str;
while (ignores != NULL)
ignore_destroy(ignores->data);
diff --git a/src/irc/core/irc-log.c b/src/irc/core/irc-log.c
index accf6014..9773a29a 100644
--- a/src/irc/core/irc-log.c
+++ b/src/irc/core/irc-log.c
@@ -40,20 +40,15 @@ static void event_away(const char *data, IRC_SERVER_REC *server)
if (level == 0) return;
log = log_find(fname);
- if (log != NULL) {
- /* awaylog already created */
- if (log->handle == -1) {
- /* ..but not open, open it. */
- log_start_logging(log);
- }
- return;
- }
-
- log = log_create_rec(fname, level, NULL);
- if (log != NULL) {
+ if (log == NULL) {
+ log = log_create_rec(fname, level, NULL);
log->temp = TRUE;
log_update(log);
- log_start_logging(log);
+ }
+
+ if (!log_start_logging(log)) {
+ /* creating log file failed? close it. */
+ log_close(log);
}
}
diff --git a/src/irc/core/query.c b/src/irc/core/query.c
index cce333af..4f85b3f1 100644
--- a/src/irc/core/query.c
+++ b/src/irc/core/query.c
@@ -63,6 +63,7 @@ void query_destroy(QUERY_REC *query)
signal_emit("query destroyed", 1, query);
MODULE_DATA_DEINIT(query);
+ g_free_not_null(query->address);
g_free(query->nick);
g_free(query->server_tag);
g_free(query);