aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-exception.c
diff options
context:
space:
mode:
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;
}