Author: winesync Date: Fri Jul 21 17:04:49 2006 New Revision: 23205
URL: http://svn.reactos.org/svn/reactos?rev=23205&view=rev Log: Autosyncing with Wine HEAD
Modified: trunk/reactos/dll/win32/mapi32/sendmail.c
Modified: trunk/reactos/dll/win32/mapi32/sendmail.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/mapi32/sendmail.c... ============================================================================== --- trunk/reactos/dll/win32/mapi32/sendmail.c (original) +++ trunk/reactos/dll/win32/mapi32/sendmail.c Fri Jul 21 17:04:49 2006 @@ -63,7 +63,8 @@ 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 = NULL, *cc = NULL, *bcc = NULL, *subject, *body; + char *to = NULL, *cc = NULL, *bcc = NULL; + const char *address, *subject, *body; static const char format[] = "mailto:"%s"?subject="%s"&cc="%s"&bcc="%s"&body="%s""; char *mailto = NULL, *escape = NULL;