diff options
author | Owen W. Taylor <otaylor@fishsoup.net> | 2011-02-28 16:51:54 -0500 |
---|---|---|
committer | Owen W. Taylor <otaylor@fishsoup.net> | 2011-02-28 16:53:09 -0500 |
commit | 29eb3215b3dc677a4a861634aaff0e6507f98d3a (patch) | |
tree | c6b819fe6b1b500b1a343048f41495d5add44a4a /src/calendar-server | |
parent | 7c534a87cfe8aeee220d068115a51c5281f3f5af (diff) |
gnome-shell-calendar-server.c: Fix uninitialized variable usage
In case of of bad command line options being passed, an uninitialized
variable would be accessed.
Diffstat (limited to 'src/calendar-server')
-rw-r--r-- | src/calendar-server/gnome-shell-calendar-server.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/calendar-server/gnome-shell-calendar-server.c b/src/calendar-server/gnome-shell-calendar-server.c index 4d4d3a50..f184b084 100644 --- a/src/calendar-server/gnome-shell-calendar-server.c +++ b/src/calendar-server/gnome-shell-calendar-server.c @@ -1016,6 +1016,7 @@ main (int argc, loop = NULL; opt_context = NULL; name_owner_id = 0; + stdin_channel = NULL; g_type_init (); |