aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-pilot-map.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2009-07-28 02:55:30 +0800
committerMilan Crha <mcrha@redhat.com>2009-07-28 02:55:30 +0800
commit3818a6404a4b413f35b008a24c98155ab3cfe2b4 (patch)
treed8d9c620ad31d8ceb7e07b25a45e10519d8910d9 /e-util/e-pilot-map.c
parentf2de8f314001d607eb3ec174ad45eacd98acb749 (diff)
downloadgsoc2013-evolution-3818a6404a4b413f35b008a24c98155ab3cfe2b4.tar
gsoc2013-evolution-3818a6404a4b413f35b008a24c98155ab3cfe2b4.tar.gz
gsoc2013-evolution-3818a6404a4b413f35b008a24c98155ab3cfe2b4.tar.bz2
gsoc2013-evolution-3818a6404a4b413f35b008a24c98155ab3cfe2b4.tar.lz
gsoc2013-evolution-3818a6404a4b413f35b008a24c98155ab3cfe2b4.tar.xz
gsoc2013-evolution-3818a6404a4b413f35b008a24c98155ab3cfe2b4.tar.zst
gsoc2013-evolution-3818a6404a4b413f35b008a24c98155ab3cfe2b4.zip
Compiler warning fixes (as part of bug #424078)
Diffstat (limited to 'e-util/e-pilot-map.c')
-rw-r--r--e-util/e-pilot-map.c4
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);