diff options
author | Milan Crha <mcrha@redhat.com> | 2013-11-15 16:06:57 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2013-11-15 16:06:57 +0800 |
commit | 570c6374806d0f1ec59cf7a72543efe6b5b637be (patch) | |
tree | c5390b1fcb73f30c28bf37168add9bf1dc622b42 /shell/e-shell-migrate.c | |
parent | 1be51f232560f864ba8795a38e55d472b5b0e2b3 (diff) | |
download | gsoc2013-evolution-570c6374806d0f1ec59cf7a72543efe6b5b637be.tar gsoc2013-evolution-570c6374806d0f1ec59cf7a72543efe6b5b637be.tar.gz gsoc2013-evolution-570c6374806d0f1ec59cf7a72543efe6b5b637be.tar.bz2 gsoc2013-evolution-570c6374806d0f1ec59cf7a72543efe6b5b637be.tar.lz gsoc2013-evolution-570c6374806d0f1ec59cf7a72543efe6b5b637be.tar.xz gsoc2013-evolution-570c6374806d0f1ec59cf7a72543efe6b5b637be.tar.zst gsoc2013-evolution-570c6374806d0f1ec59cf7a72543efe6b5b637be.zip |
Fix/mute issues found by Coverity scan
This makes the code free of Coverity scan issues.
It is sometimes quite pedantic and expects/suggests some
coding habits, thus certain changes may look weird, but for a good
thing, I hope. The code is also tagged with Coverity scan
suppressions, to keep the code as is and hide the warning too.
Also note that Coverity treats g_return_if_fail(), g_assert() and
similar macros as unreliable, and it's true these can be disabled
during the compile time, thus it brings in other set of 'weird'
changes.
Diffstat (limited to 'shell/e-shell-migrate.c')
-rw-r--r-- | shell/e-shell-migrate.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/shell/e-shell-migrate.c b/shell/e-shell-migrate.c index 20e96960e4..f7de962fde 100644 --- a/shell/e-shell-migrate.c +++ b/shell/e-shell-migrate.c @@ -19,12 +19,15 @@ * */ -#include "e-shell-migrate.h" - +#ifdef HAVE_CONFIG_H #include <config.h> +#endif + +#include <errno.h> #include <glib/gstdio.h> #include <libedataserver/libedataserver.h> +#include "e-shell-migrate.h" #include "evo-version.h" static gboolean @@ -157,7 +160,9 @@ change_dir_modes (const gchar *path) g_free (full_path); } - g_chmod (path, 0700); + if (g_chmod (path, 0700) == -1) + g_warning ("%s: Failed to chmod of '%s': %s", G_STRFUNC, path, g_strerror (errno)); + g_dir_close (dir); } |