Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
03ca3895
Commit
03ca3895
authored
Nov 26, 2007
by
Huw Davies
Committed by
Alexandre Julliard
Nov 27, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
inetcomm: Unfold headers.
parent
31297b6a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
0 deletions
+28
-0
mimeole.c
dlls/inetcomm/mimeole.c
+28
-0
No files found.
dlls/inetcomm/mimeole.c
View file @
03ca3895
...
...
@@ -228,6 +228,31 @@ static header_t *read_prop(MimeBody *body, char **ptr)
return
ret
;
}
static
void
unfold_header
(
char
*
header
,
int
len
)
{
char
*
start
=
header
,
*
cp
=
header
;
do
{
while
(
*
cp
==
' '
||
*
cp
==
'\t'
)
{
cp
++
;
len
--
;
}
if
(
cp
!=
start
)
memmove
(
start
,
cp
,
len
+
1
);
cp
=
strstr
(
start
,
"
\r\n
"
);
len
-=
(
cp
-
start
);
start
=
cp
;
*
start
=
' '
;
start
++
;
len
--
;
cp
+=
2
;
}
while
(
*
cp
==
' '
||
*
cp
==
'\t'
);
*
(
start
-
1
)
=
'\0'
;
}
static
void
read_value
(
header_t
*
header
,
char
**
cur
)
{
char
*
end
=
*
cur
,
*
value
;
...
...
@@ -243,6 +268,9 @@ static void read_value(header_t *header, char **cur)
memcpy
(
value
,
*
cur
,
len
);
value
[
len
]
=
'\0'
;
unfold_header
(
value
,
len
);
TRACE
(
"value %s
\n
"
,
debugstr_a
(
value
));
header
->
value
.
vt
=
VT_LPSTR
;
header
->
value
.
pszVal
=
value
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment