diff options
| author | Jiri Moskovcak <jmoskovc@localhost.localdomain> | 2009-11-16 19:31:39 +0100 |
|---|---|---|
| committer | Jiri Moskovcak <jmoskovc@localhost.localdomain> | 2009-11-16 19:31:39 +0100 |
| commit | e02e60e8b1b3083ea13454c61460d72a0188517a (patch) | |
| tree | 1679fa5bf56a00f9b6f3947cc2e1aef1f4c2559f /lib/Utils/DebugDump.cpp | |
| parent | 80a2d45c6ce729fc778d2ecc00569635cf886e7b (diff) | |
| parent | b69dd49d43a7c538c55e5cebab97c5f217cfe8fb (diff) | |
| download | abrt-e02e60e8b1b3083ea13454c61460d72a0188517a.tar.gz abrt-e02e60e8b1b3083ea13454c61460d72a0188517a.tar.xz abrt-e02e60e8b1b3083ea13454c61460d72a0188517a.zip | |
Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt
Diffstat (limited to 'lib/Utils/DebugDump.cpp')
| -rw-r--r-- | lib/Utils/DebugDump.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Utils/DebugDump.cpp b/lib/Utils/DebugDump.cpp index ba11d965..2883d01f 100644 --- a/lib/Utils/DebugDump.cpp +++ b/lib/Utils/DebugDump.cpp @@ -74,7 +74,7 @@ void CDebugDump::Open(const char *pDir) bool CDebugDump::Exist(const char* pPath) { - std::string fullPath = m_sDebugDumpDir + "/" + pPath; + std::string fullPath = concat_path_file(m_sDebugDumpDir.c_str(), pPath); return ExistFileDir(fullPath.c_str()); } @@ -433,7 +433,7 @@ void CDebugDump::LoadText(const char* pName, std::string& pData) { throw CABRTException(EXCEP_DD_OPEN, "CDebugDump::LoadText(): DebugDump is not opened."); } - std::string fullPath = m_sDebugDumpDir + '/' + pName; + std::string fullPath = concat_path_file(m_sDebugDumpDir.c_str(), pName); LoadTextFile(fullPath.c_str(), pData); } @@ -443,7 +443,7 @@ void CDebugDump::SaveText(const char* pName, const char* pData) { throw CABRTException(EXCEP_DD_OPEN, "CDebugDump::SaveText(): DebugDump is not opened."); } - std::string fullPath = m_sDebugDumpDir + "/" + pName; + std::string fullPath = concat_path_file(m_sDebugDumpDir.c_str(), pName); SaveBinaryFile(fullPath.c_str(), pData, strlen(pData)); } void CDebugDump::SaveBinary(const char* pName, const char* pData, unsigned pSize) @@ -452,7 +452,7 @@ void CDebugDump::SaveBinary(const char* pName, const char* pData, unsigned pSize { throw CABRTException(EXCEP_DD_OPEN, "CDebugDump::SaveBinary(): DebugDump is not opened."); } - std::string fullPath = m_sDebugDumpDir + "/" + pName; + std::string fullPath = concat_path_file(m_sDebugDumpDir.c_str(), pName); SaveBinaryFile(fullPath.c_str(), pData, pSize); } |
