diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2017-11-17 02:29:47 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2017-11-17 02:29:47 +0000 |
commit | be730b5824b0ea9af03152031552903d911a3f91 (patch) | |
tree | 5e2998351e216bd01533da45506622b9d890ab6c /libsylph | |
parent | cba5db3899a97a827649f0071ecc1382a931c099 (diff) |
added missing GError NULL initialization.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3576 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph')
-rw-r--r-- | libsylph/codeconv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsylph/codeconv.c b/libsylph/codeconv.c index ee386591..dac29f52 100644 --- a/libsylph/codeconv.c +++ b/libsylph/codeconv.c @@ -2572,7 +2572,7 @@ static gint conv_copy_file_with_gconvert(const gchar *src, const gchar *dest, gchar *src_s = NULL; gsize len = 0, dlen = 0; gchar *dest_s; - GError *error; + GError *error = NULL; g_return_val_if_fail(src != NULL, -1); g_return_val_if_fail(dest != NULL, -1); |