Autosyncing with Wine HEAD
authorThe Wine Synchronizer <winesync@svn.reactos.org>
Fri, 21 Jul 2006 13:04:49 +0000 (13:04 +0000)
committerThe Wine Synchronizer <winesync@svn.reactos.org>
Fri, 21 Jul 2006 13:04:49 +0000 (13:04 +0000)
svn path=/trunk/; revision=23205

reactos/dll/win32/mapi32/sendmail.c

index 5681c97..e2c41d0 100644 (file)
@@ -63,7 +63,8 @@ ULONG WINAPI MAPISendMail( LHANDLE session, ULONG_PTR 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 = 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;