diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-05-12 16:41:11 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-05-12 16:41:11 -0230 |
commit | d2a54eeac178032b44e97af72b939b04f956387d (patch) | |
tree | a0c3f96040dfaa3a1b4e9a981275419103ae0eb7 /cpp/src/Slice/Preprocessor.cpp | |
parent | Bug 3922 - IceGrid/secure expect script not require ICE_HOME (diff) | |
download | ice-d2a54eeac178032b44e97af72b939b04f956387d.tar.bz2 ice-d2a54eeac178032b44e97af72b939b04f956387d.tar.xz ice-d2a54eeac178032b44e97af72b939b04f956387d.zip |
Slice compiler crash when slice file had double slashes
Diffstat (limited to 'cpp/src/Slice/Preprocessor.cpp')
-rw-r--r-- | cpp/src/Slice/Preprocessor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Slice/Preprocessor.cpp b/cpp/src/Slice/Preprocessor.cpp index ac77590c7a3..36e51ffa16d 100644 --- a/cpp/src/Slice/Preprocessor.cpp +++ b/cpp/src/Slice/Preprocessor.cpp @@ -46,7 +46,7 @@ extern "C" char* mcpp_get_mem_buffer(Outdest od); Slice::Preprocessor::Preprocessor(const string& path, const string& fileName, const vector<string>& args) : _path(path), - _fileName(fileName), + _fileName(fullPath(fileName)), _args(args), _cppHandle(0) { |