diff options
author | Milan Crha <mcrha@redhat.com> | 2009-07-28 02:55:30 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-08-11 07:31:44 +0800 |
commit | cdd06c393d2c6dd0b5716a354aecc92c8457dc4d (patch) | |
tree | d46a3dd43d651e297b8e273388ae9fea63d88270 /e-util | |
parent | 741d49c900ecc01002513060826b43dc26d4e55d (diff) | |
download | gsoc2013-evolution-cdd06c393d2c6dd0b5716a354aecc92c8457dc4d.tar.gz gsoc2013-evolution-cdd06c393d2c6dd0b5716a354aecc92c8457dc4d.tar.zst gsoc2013-evolution-cdd06c393d2c6dd0b5716a354aecc92c8457dc4d.zip |
Compiler warning fixes (as part of bug #424078)
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/e-pilot-map.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/e-util/e-pilot-map.c b/e-util/e-pilot-map.c index 660bdedc9a..83517197fd 100644 --- a/e-util/e-pilot-map.c +++ b/e-util/e-pilot-map.c @@ -56,8 +56,8 @@ static void real_e_pilot_map_insert (EPilotMap *map, guint32 pid, const gchar *uid, gboolean archived, gboolean touch) { gchar *new_uid; - guint32 *new_pid; - EPilotMapPidNode *pnode; + guint32 *new_pid = NULL; + EPilotMapPidNode *pnode = NULL; EPilotMapUidNode *unode; g_return_if_fail (map != NULL); |