summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Mitz <mitza@objectcomputing.com>2021-07-23 18:11:20 -0500
committerGitHub <noreply@github.com>2021-07-23 18:11:20 -0500
commit908c1a40dda1810d021b1d70603ef4e05f4af6b2 (patch)
treeff64791c611e4a73986630371354d2c1d36a7bdb
parent13c55ef5cda86cda86343a546a302738a2523ae1 (diff)
parentbdd85124c4e39d5200575c6b3e1252d42842a74f (diff)
downloadATCD-908c1a40dda1810d021b1d70603ef4e05f4af6b2.tar.gz
Merge pull request #1633 from iguessthislldo/igtd/stdint
Fix Coverity Issue
-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 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;
}
}