summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Mitz <mitza@ociweb.com>2016-12-02 14:46:27 -0600
committerGitHub <noreply@github.com>2016-12-02 14:46:27 -0600
commitc08807ca7fcb4d34ac4c8a3f06f55bcd7f4bb4ab (patch)
tree68bf6a25bc202d9bc6ea4058e9d5528a0a707d19
parentdd839188b02c35a57522e2c953dddace870c11a1 (diff)
parent10925cb8e97f0407a98c362eb5b6d39ded8960f3 (diff)
downloadATCD-c08807ca7fcb4d34ac4c8a3f06f55bcd7f4bb4ab.tar.gz
Merge pull request #338 from huangminghuang/master
fix memory leak for tao_idl
-rw-r--r--TAO/TAO_IDL/driver/drv_preproc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/TAO_IDL/driver/drv_preproc.cpp b/TAO/TAO_IDL/driver/drv_preproc.cpp
index 6c699eda03d..bc720f124c2 100644
--- a/TAO/TAO_IDL/driver/drv_preproc.cpp
+++ b/TAO/TAO_IDL/driver/drv_preproc.cpp
@@ -935,7 +935,7 @@ namespace
ACE_CString fixed_name ("tao/");
fixed_name += incl_file;
- idl_global->add_to_included_idl_files (fixed_name.rep ());
+ idl_global->add_to_included_idl_files (fixed_name.c_str ());
}
else
{