Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
32affb8a
Commit
32affb8a
authored
Feb 09, 2006
by
Hans Leidekker
Committed by
Alexandre Julliard
Feb 09, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mapi32: Prevent freeing non-allocated memory.
parent
5e3c00fa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sendmail.c
dlls/mapi32/sendmail.c
+2
-2
No files found.
dlls/mapi32/sendmail.c
View file @
32affb8a
...
...
@@ -63,7 +63,7 @@ ULONG WINAPI MAPISendMail( LHANDLE session, ULONG uiparam,
unsigned
int
i
,
to_count
=
0
,
cc_count
=
0
,
bcc_count
=
0
;
unsigned
int
to_size
=
0
,
cc_size
=
0
,
bcc_size
=
0
,
subj_size
,
body_size
;
char
*
address
=
""
,
*
to
=
""
,
*
cc
=
""
,
*
bcc
=
""
,
*
subject
,
*
body
;
char
*
address
=
""
,
*
to
=
NULL
,
*
cc
=
NULL
,
*
bcc
=
NULL
,
*
subject
,
*
body
;
static
const
char
format
[]
=
"mailto:
\"
%s
\"
?subject=
\"
%s
\"
&cc=
\"
%s
\"
&bcc=
\"
%s
\"
&body=
\"
%s
\"
"
;
char
*
mailto
=
NULL
,
*
escape
=
NULL
;
...
...
@@ -173,7 +173,7 @@ ULONG WINAPI MAPISendMail( LHANDLE session, ULONG uiparam,
mailto
=
HeapAlloc
(
GetProcessHeap
(),
0
,
size
);
if
(
!
mailto
)
goto
exit
;
sprintf
(
mailto
,
format
,
to
,
subject
,
cc
,
bcc
,
body
);
sprintf
(
mailto
,
format
,
to
?
to
:
""
,
subject
,
cc
?
cc
:
""
,
bcc
?
bcc
:
""
,
body
);
size
=
0
;
res
=
UrlEscapeA
(
mailto
,
NULL
,
&
size
,
URL_ESCAPE_SPACES_ONLY
);
...
...
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