diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-02-12 14:30:25 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-02-12 22:55:32 +0100 |
commit | 179927c12a54ea810bbc7c6c6fb970ad90b89eef (patch) | |
tree | 5cf9b6a9f36beae7b893e0d4b10c38bdda7830ac /lib/mime.h | |
parent | 84c10dc1ba683a2c15303ad3909e30a5a115a282 (diff) | |
download | curl-179927c12a54ea810bbc7c6c6fb970ad90b89eef.tar.gz |
mime: put the boundary buffer into the curl_mime struct
... instead of allocating it separately and point to it. It is
fixed-size and always used for each part.
Closes #3561
Diffstat (limited to 'lib/mime.h')
-rw-r--r-- | lib/mime.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/mime.h b/lib/mime.h index 4d5c70404..ea34a75a6 100644 --- a/lib/mime.h +++ b/lib/mime.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -88,13 +88,16 @@ typedef struct { size_t offset; /* State-dependent offset. */ } mime_state; +/* mimimum buffer size for the boundary string */ +#define MIME_BOUNDARY_LEN (24 + MIME_RAND_BOUNDARY_CHARS + 1) + /* A mime multipart. */ struct curl_mime_s { struct Curl_easy *easy; /* The associated easy handle. */ curl_mimepart *parent; /* Parent part. */ curl_mimepart *firstpart; /* First part. */ curl_mimepart *lastpart; /* Last part. */ - char *boundary; /* The part boundary. */ + char boundary[MIME_BOUNDARY_LEN]; /* The part boundary. */ mime_state state; /* Current readback state. */ }; |