diff options
author | Matt Wilson <msw@redhat.com> | 2000-10-08 03:57:41 +0800 |
---|---|---|
committer | Matt Wilson <msw@src.gnome.org> | 2000-10-08 03:57:41 +0800 |
commit | 71605c0a38508ebea1732ce4f24882b042e1166e (patch) | |
tree | 8d0841bd462fa6d6ac0e071fe8fe023f89f79b0d /shell | |
parent | 9acde37ac54919dbe9f8d49a1fc7aa914327f3ff (diff) | |
download | gsoc2013-evolution-71605c0a38508ebea1732ce4f24882b042e1166e.tar gsoc2013-evolution-71605c0a38508ebea1732ce4f24882b042e1166e.tar.gz gsoc2013-evolution-71605c0a38508ebea1732ce4f24882b042e1166e.tar.bz2 gsoc2013-evolution-71605c0a38508ebea1732ce4f24882b042e1166e.tar.lz gsoc2013-evolution-71605c0a38508ebea1732ce4f24882b042e1166e.tar.xz gsoc2013-evolution-71605c0a38508ebea1732ce4f24882b042e1166e.tar.zst gsoc2013-evolution-71605c0a38508ebea1732ce4f24882b042e1166e.zip |
initialize priv->sockets to NULL, fixes startup crash on non-ia32
2000-10-07 Matt Wilson <msw@redhat.com>
* e-shell-view.c (init): initialize priv->sockets to NULL, fixes
startup crash on non-ia32 platforms
svn path=/trunk/; revision=5779
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-view.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index dedaf7188f..4790299adc 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2000-10-07 Matt Wilson <msw@redhat.com> + + * e-shell-view.c (init): initialize priv->sockets to NULL, fixes + startup crash on non-ia32 platforms + 2000-10-06 Ettore Perazzoli <ettore@helixcode.com> * e-shell-view.c: New member `sockets. diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index acd829def3..228529da52 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -675,6 +675,7 @@ init (EShellView *shell_view) priv->progress_bar_timeout_id = 0; priv->progress_bar_value = 0; + priv->sockets = NULL; shell_view->priv = priv; } |