mirror of
https://github.com/nasa/trick.git
synced 2025-01-08 14:02:44 +00:00
Invoking trick-ICG without any arguments results in a Segmentation fault
ICG dies on a strdup if the the input file is empty. Added a check for an empty input file name. We exit with an error message if there is no input file given. refs #229
This commit is contained in:
parent
c4a5e8b310
commit
3f7676a740
@ -85,6 +85,11 @@ int main( int argc , char * argv[] ) {
|
|||||||
return 0 ;
|
return 0 ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( input_file_names.empty() ) {
|
||||||
|
std::cerr << "No header file specified" << std::endl ;
|
||||||
|
return 1 ;
|
||||||
|
}
|
||||||
|
|
||||||
#if (__clang_major__ == 3) && (__clang_minor__ >= 3)
|
#if (__clang_major__ == 3) && (__clang_minor__ >= 3)
|
||||||
ci.createDiagnostics();
|
ci.createDiagnostics();
|
||||||
#else
|
#else
|
||||||
|
Loading…
Reference in New Issue
Block a user