aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-exception.c
diff options
context:
space:
mode:
authorbertrand <bertrand@helixcode.com>2000-01-25 06:29:49 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>2000-01-25 06:29:49 +0800
commit7dded29a632d26b8ed2c279004dd5fe39014de27 (patch)
tree62205f85ea95f2d06543341c4c66765e89f9bf40 /camel/camel-exception.c
parent98e15c6b5c3757241e3a4017df85ee0e42a5f947 (diff)
downloadgsoc2013-evolution-7dded29a632d26b8ed2c279004dd5fe39014de27.tar
gsoc2013-evolution-7dded29a632d26b8ed2c279004dd5fe39014de27.tar.gz
gsoc2013-evolution-7dded29a632d26b8ed2c279004dd5fe39014de27.tar.bz2
gsoc2013-evolution-7dded29a632d26b8ed2c279004dd5fe39014de27.tar.lz
gsoc2013-evolution-7dded29a632d26b8ed2c279004dd5fe39014de27.tar.xz
gsoc2013-evolution-7dded29a632d26b8ed2c279004dd5fe39014de27.tar.zst
gsoc2013-evolution-7dded29a632d26b8ed2c279004dd5fe39014de27.zip
converted all gint64 variables into guint32.
2000-01-24 bertrand <bertrand@helixcode.com> * camel/camel-stream-fs.[ch]: converted all gint64 variables into guint32. * camel/camel-stream-fs.c (_read): fix stupid bug. (_write): ditto. * camel/camel-exception.c (camel_exception_new): don't forget to clean the exception when creating it. svn path=/trunk/; revision=1621
Diffstat (limited to 'camel/camel-exception.c')
-rw-r--r--camel/camel-exception.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/camel/camel-exception.c b/camel/camel-exception.c
index 0a4b92b8ef..a983150612 100644
--- a/camel/camel-exception.c
+++ b/camel/camel-exception.c
@@ -43,6 +43,11 @@ camel_exception_new ()
CamelException *ex;
ex = g_new (CamelException, 1);
+ ex->desc = NULL;
+
+ /* set the Exception Id to NULL */
+ ex->id = CAMEL_EXCEPTION_NONE;
+
return ex;
}