浏览代码

Merge pull request #2193 from ghalliday/memleakbreak

Fix regression if memory leak option is enabled

Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 13 年之前
父节点
当前提交
3dac26bf7a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      ecl/eclcc/eclcc.cpp

+ 1 - 1
ecl/eclcc/eclcc.cpp

@@ -1471,7 +1471,7 @@ bool EclCC::parseCommandLineOptions(int argc, const char* argv[])
     if (optDebugMemLeak)
     {
         StringBuffer title;
-        title.append(inputFiles.item(0).queryFilename()).newline();
+        title.append(inputFileNames.item(0)).newline();
         initLeakCheck(title);
     }