diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2006-08-23 16:20:23 +0800 |
---|---|---|
committer | Andre Klapper <aklapper@src.gnome.org> | 2006-08-23 16:20:23 +0800 |
commit | 27928c2f6ca528e5b0dd50397efc7479b121985c (patch) | |
tree | 9a8555b9c89aa95e88a570fff6ef08e21da2350a /calendar | |
parent | c09e79bbf4b00ae5992456ff9e3dead1ee8efcb7 (diff) | |
download | gsoc2013-evolution-27928c2f6ca528e5b0dd50397efc7479b121985c.tar.gz gsoc2013-evolution-27928c2f6ca528e5b0dd50397efc7479b121985c.tar.zst gsoc2013-evolution-27928c2f6ca528e5b0dd50397efc7479b121985c.zip |
fix an uninitialized GError - fixes bug 352423. committed by Andre Klapper
2006-08-23 Matthew Barnes <mbarnes@redhat.com>
* calendar/gui/e-itip-control.c:
* plugins/itip-formatter/itip-formatter.c:
fix an uninitialized GError - fixes bug 352423.
committed by Andre Klapper
svn path=/trunk/; revision=32637
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/e-itip-control.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index a46cc3a1f8..08239c0b3d 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2006-08-23 Matthew Barnes <mbarnes@redhat.com> + + * gui/e-itip-control.c: + fix an uninitialized GError - fixes bug 352423. + 2006-02-14 Rajeev ramanathan <rajeevramanathan_2004@yahoo.co.in> **Fixes #325935 diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index bc4ac19369..d0164957ce 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -1916,7 +1916,7 @@ update_attendee_status (EItipControl *itip) icalcomponent *icalcomp = NULL; const char *uid; GtkWidget *dialog; - GError *error; + GError *error = NULL; priv = itip->priv; |