diff options
author | Dan Winship <danw@src.gnome.org> | 2001-10-24 00:32:44 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-10-24 00:32:44 +0800 |
commit | 41fb38eb09e338d76e63cb8b6a2ac7e2505e5c72 (patch) | |
tree | c7810ff943542303095b313f694a8885e4f797a0 /mail/mail-mt.c | |
parent | 66efbe69a2d8be17f17f899a0ddd7342cf22ee4b (diff) | |
download | gsoc2013-evolution-41fb38eb09e338d76e63cb8b6a2ac7e2505e5c72.tar gsoc2013-evolution-41fb38eb09e338d76e63cb8b6a2ac7e2505e5c72.tar.gz gsoc2013-evolution-41fb38eb09e338d76e63cb8b6a2ac7e2505e5c72.tar.bz2 gsoc2013-evolution-41fb38eb09e338d76e63cb8b6a2ac7e2505e5c72.tar.lz gsoc2013-evolution-41fb38eb09e338d76e63cb8b6a2ac7e2505e5c72.tar.xz gsoc2013-evolution-41fb38eb09e338d76e63cb8b6a2ac7e2505e5c72.tar.zst gsoc2013-evolution-41fb38eb09e338d76e63cb8b6a2ac7e2505e5c72.zip |
If the fopen() fails (eg, because evolution-mail was started by oafd with
* mail-mt.c (mail_msg_new): If the fopen() fails (eg, because
evolution-mail was started by oafd with PWD=/), don't try to use
the NULL file handle.
svn path=/trunk/; revision=13943
Diffstat (limited to 'mail/mail-mt.c')
-rw-r--r-- | mail/mail-mt.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/mail/mail-mt.c b/mail/mail-mt.c index ab240d595f..af3eb5c5f2 100644 --- a/mail/mail-mt.c +++ b/mail/mail-mt.c @@ -95,8 +95,14 @@ void *mail_msg_new(mail_msg_op_t *ops, EMsgPort *reply_port, size_t size) log_ops = getenv("EVOLUTION_MAIL_LOG_OPS") != NULL; log_locks = getenv("EVOLUTION_MAIL_LOG_LOCKS") != NULL; log = fopen("evolution-mail-ops.log", "w+"); - setvbuf(log, NULL, _IOLBF, 0); - fprintf(log, "Started evolution-mail: %s\n", ctime(&now)); + if (log) { + setvbuf(log, NULL, _IOLBF, 0); + fprintf(log, "Started evolution-mail: %s\n", ctime(&now)); + g_warning("Logging mail operations to evolution-mail-ops.log"); + } else { + g_warning ("Could not open log file: %s", g_strerror (errno)); + log_ops = log_locks = FALSE; + } #ifdef LOG_OPS if (log_ops) fprintf(log, "Logging async operations\n"); @@ -107,7 +113,6 @@ void *mail_msg_new(mail_msg_op_t *ops, EMsgPort *reply_port, size_t size) fprintf(log, "%ld: lock mail_msg_lock\n", pthread_self()); } #endif - g_warning("Logging mail operations to evolution-mail-ops.log"); } #endif msg = g_malloc0(size); |