]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/http.cpp
no message
[wxWidgets.git] / src / common / http.cpp
index 07ba17fa8b0e38918d9a7cc4ba308511f3fe473e..221dddb8761458a9f0736cc8b599884fda71abce 100644 (file)
@@ -97,12 +97,14 @@ void wxHTTP::SendHeaders()
 {
   wxNode *head = m_headers.First();
 
-  while (head) {
+  while (head)
+  {
     wxString *str = (wxString *)head->Data();
-    char buf[100];
 
-    sprintf(buf, "%s: %s\n\r", head->GetKeyString(), str->GetData());
-    Write(buf, strlen(buf));
+    wxString buf;
+    buf.Printf("%s: %s\n\r", head->GetKeyString(), str->GetData());
+
+    Write(buf, buf.Len());
 
     head = head->Next();
   }