diff options
author | Ting-Wei Lan <lantw44@gmail.com> | 2013-08-20 21:49:40 +0800 |
---|---|---|
committer | LAN-TW <lantw44@gmail.com> | 2013-08-20 21:49:40 +0800 |
commit | 779200f4c5c50e6a64841c77db98e721a638652d (patch) | |
tree | e698827d36412b65144486f1a2c6caf32a42e14f /e-util | |
parent | c44b5c5cd564134755eba7904b2efb894c2ea513 (diff) | |
download | gsoc2013-evolution-779200f4c5c50e6a64841c77db98e721a638652d.tar.gz gsoc2013-evolution-779200f4c5c50e6a64841c77db98e721a638652d.tar.zst gsoc2013-evolution-779200f4c5c50e6a64841c77db98e721a638652d.zip |
Prevent using uninitialized value
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/e-attachment.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/e-util/e-attachment.c b/e-util/e-attachment.c index 0de66333dc..788e5940d0 100644 --- a/e-util/e-attachment.c +++ b/e-util/e-attachment.c @@ -3209,6 +3209,7 @@ attachment_save_query_info_cb (GFile *destination, char *suggested; attachment = save_context->attachment; + suggested = NULL; info = e_attachment_ref_file_info (attachment); if (info != NULL) suggested = g_strdup ( |