From cdcf3ea97e4a9d7ee9dc1f80096dbba08f61d852 Mon Sep 17 00:00:00 2001 From: "scott%scott-macgregor.org" Date: Fri, 10 Sep 2004 21:56:41 +0000 Subject: [PATCH] Part of Bug #258005 --> get rid of the empty string initialization of buf that was part of the original patch. git-svn-id: svn://10.0.0.236/trunk@162107 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/mailnews/compose/src/nsMsgCompUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/mailnews/compose/src/nsMsgCompUtils.cpp b/mozilla/mailnews/compose/src/nsMsgCompUtils.cpp index 7e2cc024132..7f97b9eb4e6 100644 --- a/mozilla/mailnews/compose/src/nsMsgCompUtils.cpp +++ b/mozilla/mailnews/compose/src/nsMsgCompUtils.cpp @@ -821,7 +821,7 @@ mime_generate_attachment_headers (const char *type, { nsresult rv; - nsCString buf(""); + nsCString buf; NS_ASSERTION (encoding, "null encoding");