diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-11-17 11:30:38 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-11-17 14:53:22 +0000 |
commit | 5208856b3ba586ef2e033ae8421fd35d00b47c94 (patch) | |
tree | 5a21ad93a98851e73bfdc27cf3cf3552d709efe3 /odk/source | |
parent | 60b3d8119cfe99dc0987178cdab0ff5dac8029bb (diff) |
document coverity#706181 Use of untrusted string value
Change-Id: If8c80568175b3a5380ee78dda5ebd161c5dba2f6
Diffstat (limited to 'odk/source')
-rw-r--r-- | odk/source/unoapploader/unx/unoapploader.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/odk/source/unoapploader/unx/unoapploader.c b/odk/source/unoapploader/unx/unoapploader.c index 48e36786b37c..e2b7b0b8eb0a 100644 --- a/odk/source/unoapploader/unx/unoapploader.c +++ b/odk/source/unoapploader/unx/unoapploader.c @@ -221,6 +221,7 @@ int main( int argc, char *argv[] ) * create the application process; * if successful, execvp doesn't return to the calling process */ + /* coverity[tainted_string] - createCommandName creates a safe string */ execvp( cmdname, argv ); fprintf( stderr, "Error: execvp failed!\n" ); fflush( stderr ); |