diff options
author | Adam Mitz <mitza@objectcomputing.com> | 2021-07-23 18:11:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-23 18:11:20 -0500 |
commit | 908c1a40dda1810d021b1d70603ef4e05f4af6b2 (patch) | |
tree | ff64791c611e4a73986630371354d2c1d36a7bdb /TAO | |
parent | 13c55ef5cda86cda86343a546a302738a2523ae1 (diff) | |
parent | bdd85124c4e39d5200575c6b3e1252d42842a74f (diff) | |
download | ATCD-908c1a40dda1810d021b1d70603ef4e05f4af6b2.tar.gz |
Merge pull request #1633 from iguessthislldo/igtd/stdint
Fix Coverity Issue
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/TAO_IDL/driver/drv_preproc.cpp | 2 |
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 19df12c6286..9a188c9fa25 100644 --- a/TAO/TAO_IDL/driver/drv_preproc.cpp +++ b/TAO/TAO_IDL/driver/drv_preproc.cpp @@ -200,7 +200,7 @@ DRV_cpp_putarg (const char *str) if (replace) { - delete replace; + delete [] replace; replace = nullptr; } } |