diff options
author | Miguel de Icaza <miguel@nuclecu.unam.mx> | 1999-05-26 08:09:06 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1999-05-26 08:09:06 +0800 |
commit | c2151121d3d274f694d8d8fd8c6fa1e300cc98e8 (patch) | |
tree | a22375909ea748ef19e89fb0cd9698e5fd12e73d /calendar/gui/main.c | |
parent | 089aee24eab2eaae8ecec6aedb3d3e82e0eeebf9 (diff) | |
download | gsoc2013-evolution-c2151121d3d274f694d8d8fd8c6fa1e300cc98e8.tar gsoc2013-evolution-c2151121d3d274f694d8d8fd8c6fa1e300cc98e8.tar.gz gsoc2013-evolution-c2151121d3d274f694d8d8fd8c6fa1e300cc98e8.tar.bz2 gsoc2013-evolution-c2151121d3d274f694d8d8fd8c6fa1e300cc98e8.tar.lz gsoc2013-evolution-c2151121d3d274f694d8d8fd8c6fa1e300cc98e8.tar.xz gsoc2013-evolution-c2151121d3d274f694d8d8fd8c6fa1e300cc98e8.tar.zst gsoc2013-evolution-c2151121d3d274f694d8d8fd8c6fa1e300cc98e8.zip |
Added missing break here. It was causing core dumps when invoked with
1999-05-25 Miguel de Icaza <miguel@nuclecu.unam.mx>
* main.c (parse_an_arg): Added missing break here. It was causing
core dumps when invoked with --userfile.
svn path=/trunk/; revision=944
Diffstat (limited to 'calendar/gui/main.c')
-rw-r--r-- | calendar/gui/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/calendar/gui/main.c b/calendar/gui/main.c index 0961c87b4b..770608743a 100644 --- a/calendar/gui/main.c +++ b/calendar/gui/main.c @@ -739,7 +739,8 @@ parse_an_arg (poptContext ctx, */ arg = COOKIE_USER_HOME_DIR; /* fall through */ - + break; + case VIEW_KEY: start_views = g_list_append (start_views, arg); break; |