You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rj...@apache.org on 2012/11/26 23:39:22 UTC

svn commit: r1413903 - /httpd/mod_mbox/trunk/module-2.0/mbox_parse.c

Author: rjung
Date: Mon Nov 26 22:39:21 2012
New Revision: 1413903

URL: http://svn.apache.org/viewvc?rev=1413903&view=rev
Log:
Initialize charset when creating mbox index dbm files.
Relevant when no charset was given for a mail.

Modified:
    httpd/mod_mbox/trunk/module-2.0/mbox_parse.c

Modified: httpd/mod_mbox/trunk/module-2.0/mbox_parse.c
URL: http://svn.apache.org/viewvc/httpd/mod_mbox/trunk/module-2.0/mbox_parse.c?rev=1413903&r1=1413902&r2=1413903&view=diff
==============================================================================
--- httpd/mod_mbox/trunk/module-2.0/mbox_parse.c (original)
+++ httpd/mod_mbox/trunk/module-2.0/mbox_parse.c Mon Nov 26 22:39:21 2012
@@ -867,6 +867,7 @@ apr_status_t mbox_generate_index(request
                 else {
                     msgc.content_type = NULL;
                     msgc.boundary = NULL;
+                    msgc.charset = NULL;
                 }
             }
         }