diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-05-28 15:07:17 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-05-28 15:07:17 +0000 |
commit | 5eb92a399824f4657f173f81a5b681c2d7a1c2d1 (patch) | |
tree | 7ab1947df9e991d2d1765de4ec781f9c3c0bcdd9 /plugins | |
parent | 6d9795792269722dc2744795813545287faeceef (diff) |
Svc_crshdmp - partition size report fix (fix by Mataes)
git-svn-id: http://svn.miranda-ng.org/main/trunk@213 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Svc_crshdmp/dumper.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/Svc_crshdmp/dumper.cpp b/plugins/Svc_crshdmp/dumper.cpp index 2d6a0a5f1a..5d3a325ff1 100644 --- a/plugins/Svc_crshdmp/dumper.cpp +++ b/plugins/Svc_crshdmp/dumper.cpp @@ -502,7 +502,9 @@ void PrintVersionInfo(bkstring& buffer, unsigned flags) if (flags & VI_FLAG_PRNVAR)
{
- GetFreeDiskString(profpath, buffer);
+ TCHAR *profpathfull = Utils_ReplaceVarsT(profpath);
+ GetFreeDiskString(profpathfull, buffer);
+ mir_free(profpathfull);
buffer.append(TEXT("\r\n"));
}
|