aboutsummaryrefslogtreecommitdiffstats
path: root/lib/misc.c
diff options
context:
space:
mode:
authordequis <dx@dxzone.com.ar>2015-03-19 07:25:33 -0300
committerdequis <dx@dxzone.com.ar>2015-04-10 14:10:41 -0300
commit73b1a8ee4370e5dd59b21ac9cf98120682632c59 (patch)
tree9257b5c18ae2e9d7129c1fa3f02bdebbb8c86942 /lib/misc.c
parent913a663a3e383c40c644a7d0a8c8aba9d417167c (diff)
get_rfc822_header: allow headers at the end of a string
Diffstat (limited to 'lib/misc.c')
-rw-r--r--lib/misc.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/misc.c b/lib/misc.c
index 74e28bfb..c2a42c97 100644
--- a/lib/misc.c
+++ b/lib/misc.c
@@ -718,11 +718,6 @@ char *get_rfc822_header(const char *text, const char *header, int len)
i++;
}
- /* Make sure we're still inside the string */
- if (i >= len) {
- return(NULL);
- }
-
/* Copy the found data */
return(g_strndup(ret, text + i - ret));
}