From cad6e285aa250a9adbd7064fa64ac766646adc0c Mon Sep 17 00:00:00 2001 From: Larry Ewing Date: Tue, 12 Sep 2000 22:55:16 +0000 Subject: add a make sure the attachment isn't NULL. A more complete fix coming 2000-09-12 Larry Ewing * e-msg-composer-attachment-bar.c (add_common): add a make sure the attachment isn't NULL. A more complete fix coming soon. svn path=/trunk/; revision=5394 --- composer/ChangeLog | 5 +++++ composer/e-msg-composer-attachment-bar.c | 2 ++ 2 files changed, 7 insertions(+) diff --git a/composer/ChangeLog b/composer/ChangeLog index 67f863eefa..e8449a78cb 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,8 @@ +2000-09-12 Larry Ewing + + * e-msg-composer-attachment-bar.c (add_common): add a make sure + the attachment isn't NULL. A more complete fix coming soon. + 2000-09-12 Ettore Perazzoli * Makefile.am ($(IDL_GENERATED)): Add space after `-I'. diff --git a/composer/e-msg-composer-attachment-bar.c b/composer/e-msg-composer-attachment-bar.c index 20b6c3d3d2..50923f7e19 100644 --- a/composer/e-msg-composer-attachment-bar.c +++ b/composer/e-msg-composer-attachment-bar.c @@ -123,6 +123,8 @@ static void add_common (EMsgComposerAttachmentBar *bar, EMsgComposerAttachment *attachment) { + g_return_if_fail (attachment != NULL); + gtk_signal_connect (GTK_OBJECT (attachment), "changed", GTK_SIGNAL_FUNC (attachment_changed_cb), bar); -- cgit v1.2.3