summaryrefslogtreecommitdiff
blob: 29d5c3c175686ad2a049ef7ee595a8f15dbb43b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Upstream-PR: https://github.com/inflex/ripMIME/pull/23

diff --git a/MIME_headers.c b/MIME_headers.c
index ead3d12..57812d3 100644
--- a/MIME_headers.c
+++ b/MIME_headers.c
@@ -2233,7 +2233,7 @@ int MIMEH_parse_contentlocation( char *header_name, char *header_value, struct M
         {
             if (MIMEH_DNORMAL) LOGGER_log("%s:%d:MIME_parse_contentlocation:DEBUG: filename = %s\n", FL, p);
             snprintf(hinfo->name, sizeof(hinfo->name),"%s",p);
-            snprintf(hinfo->filename, sizeof(hinfo->name),"%s",p);
+            snprintf(hinfo->filename, sizeof(hinfo->filename),"%s",p);
             FNFILTER_filter(hinfo->filename, _MIMEH_FILENAMELEN_MAX);
             SS_push(&(hinfo->ss_filenames), hinfo->filename, strlen(hinfo->filename));