From 5208856b3ba586ef2e033ae8421fd35d00b47c94 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 17 Nov 2014 11:30:38 +0000 Subject: document coverity#706181 Use of untrusted string value Change-Id: If8c80568175b3a5380ee78dda5ebd161c5dba2f6 --- odk/source/unoapploader/unx/unoapploader.c | 1 + 1 file changed, 1 insertion(+) (limited to 'odk') 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 ); -- cgit