]> diplodocus.org Git - nmh/blobdiff - sbr/unquote.c
Bump up size of two static char[] so gcc knows they won't overflow.
[nmh] / sbr / unquote.c
index dde1226d4ba447241d3fe1a2e83fce03b441a444..b6411e11257ab01d5b598910a309ad11603120cb 100644 (file)
@@ -1,4 +1,4 @@
-/* unquote.c: Handle quote removal and quoted-pair strings on
+/* unquote.c -- Handle quote removal and quoted-pair strings on
  * RFC 2822-5322 atoms.
  *
  * This code is Copyright (c) 2013, by the authors of nmh.  See the
@@ -7,6 +7,7 @@
  */
 
 #include <h/mh.h>
+#include "unquote.h"
 
 /*
  * Remove quotes (and handle escape strings) from RFC 5322 quoted-strings.
@@ -39,6 +40,4 @@ unquote_string(const char *input, char *output)
     }
 
     output[m] = '\0';
-
-    return;
 }