From: Andrea Zagli Date: Sun, 12 Oct 2014 09:14:09 +0000 (+0200) Subject: SolipaMail: aggiustamento di ::get_as_string per camel >= 3.8. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=6744815102df4dc71901b786f762cc4b5f601fad;p=solipa%2Flibsolipa SolipaMail: aggiustamento di ::get_as_string per camel >= 3.8. --- diff --git a/src/mail.c b/src/mail.c index d409e7c..1d8e787 100644 --- a/src/mail.c +++ b/src/mail.c @@ -470,8 +470,15 @@ solipa_mail_get_as_string (SolipaMail *mail) return NULL; } -#ifndef CAMEL3 +#ifdef CAMEL3 error = NULL; + if (!g_seekable_seek (G_SEEKABLE (mem), 0, G_SEEK_SET, NULL, &error)) + { + g_warning ("Unable to reset the camel mem stream: %s.", + error != NULL && error->message != NULL ? error->message : "no details"); + return NULL; + } +#else if (camel_stream_reset (mem, &error) < 0) { g_warning ("Unable to reset the camel mem stream: %s.",