From 7dded29a632d26b8ed2c279004dd5fe39014de27 Mon Sep 17 00:00:00 2001 From: bertrand Date: Mon, 24 Jan 2000 22:29:49 +0000 Subject: converted all gint64 variables into guint32. 2000-01-24 bertrand * 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 --- camel/camel-exception.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'camel/camel-exception.c') 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; } -- cgit v1.2.3