diff options
Diffstat (limited to 'TAO/TAO_IDL')
-rw-r--r-- | TAO/TAO_IDL/driver/drv_preproc.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/TAO/TAO_IDL/driver/drv_preproc.cpp b/TAO/TAO_IDL/driver/drv_preproc.cpp index 9af03d1a6ab..b5a67b54d16 100644 --- a/TAO/TAO_IDL/driver/drv_preproc.cpp +++ b/TAO/TAO_IDL/driver/drv_preproc.cpp @@ -182,9 +182,10 @@ DRV_cpp_init (void) { // If no cpp flag was defined by the user, we define some // platform specific flags here. - char* option = 0; - ACE_NEW (option, - char[BUFSIZ]); + char option[BUFSIZ]; +// char* option = 0; +// ACE_NEW (option, +// char[BUFSIZ]); #if defined (TAO_IDL_PREPROCESSOR_ARGS) cpp_args = TAO_IDL_PREPROCESSOR_ARGS; |