From f3ef697fb307a053b5010145e59a34c8e0f0bf3d Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Wed, 9 Sep 2009 15:34:23 +0200 Subject: four more more string& -> char* conversions. -2k text data bss dec hex filename 188660 2776 2320 193756 2f4dc abrt.t5/abrt-0.0.8.5/src/Daemon/.libs/abrtd 186751 2776 2320 191847 2ed67 abrt.t6/abrt-0.0.8.5/src/Daemon/.libs/abrtd Signed-off-by: Denys Vlasenko --- lib/Utils/DebugDump.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/Utils/DebugDump.cpp') diff --git a/lib/Utils/DebugDump.cpp b/lib/Utils/DebugDump.cpp index 345dbf0..e607d94 100644 --- a/lib/Utils/DebugDump.cpp +++ b/lib/Utils/DebugDump.cpp @@ -410,7 +410,7 @@ static void SaveBinaryFile(const std::string& pPath, const char* pData, const un } } -void CDebugDump::LoadText(const std::string& pName, std::string& pData) +void CDebugDump::LoadText(const char* pName, std::string& pData) { if (!m_bOpened) { @@ -419,7 +419,7 @@ void CDebugDump::LoadText(const std::string& pName, std::string& pData) std::string fullPath = m_sDebugDumpDir + "/" + pName; LoadTextFile(fullPath, pData); } -void CDebugDump::LoadBinary(const std::string& pName, char** pData, unsigned int* pSize) +void CDebugDump::LoadBinary(const char* pName, char** pData, unsigned int* pSize) { if (!m_bOpened) { @@ -429,7 +429,7 @@ void CDebugDump::LoadBinary(const std::string& pName, char** pData, unsigned int LoadBinaryFile(fullPath, pData, pSize); } -void CDebugDump::SaveText(const std::string& pName, const std::string& pData) +void CDebugDump::SaveText(const char* pName, const std::string& pData) { if (!m_bOpened) { @@ -438,7 +438,7 @@ void CDebugDump::SaveText(const std::string& pName, const std::string& pData) std::string fullPath = m_sDebugDumpDir + "/" + pName; SaveTextFile(fullPath, pData); } -void CDebugDump::SaveBinary(const std::string& pName, const char* pData, const unsigned int pSize) +void CDebugDump::SaveBinary(const char* pName, const char* pData, const unsigned int pSize) { if (!m_bOpened) { @@ -489,7 +489,7 @@ bool CDebugDump::GetNextFile(std::string& pFileName, std::string& pContent, bool pFileName = dent->d_name; if (IsTextFile(fullname)) { - LoadText(pFileName, pContent); + LoadText(dent->d_name, pContent); pIsTextFile = true; } else -- cgit