diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-11-21 09:47:33 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-11-21 11:55:12 +0000 |
commit | af4700d70a807857ecb118c2bd23c023cfe387e7 (patch) | |
tree | b0a6ab7230ac2d2ac8e8a318de672b6d73c71f70 /rsc | |
parent | b5c51b706850f4fd86f26b17169a272ae02c3da8 (diff) |
document coverity#983096 Resource leak
Change-Id: If5a60dac2329432b30a7b5528e0fca05d4369b1a
Diffstat (limited to 'rsc')
-rw-r--r-- | rsc/source/rscpp/cpp3.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rsc/source/rscpp/cpp3.c b/rsc/source/rscpp/cpp3.c index f663a9f13ab8..1ab88163ac1c 100644 --- a/rsc/source/rscpp/cpp3.c +++ b/rsc/source/rscpp/cpp3.c @@ -148,6 +148,7 @@ int AddInclude( char* pIncStr ) *incend++ = pIncPos; pIncPos = strtok( NULL, ";" ); } + /* coverity[leaked_storage] - we know this leaks, but it doesn't matter in this short lived utility */ return( 1 ); } |