Changeset 102


Ignore:
Timestamp:
04/28/09 15:28:45 (16 years ago)
Author:
Eric.Larour
Message:

Added check on null string

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/EnumDefinitions/AnalysisTypeAsEnum.cpp

    r1 r102  
    1111int AnalysisTypeAsEnum(char* analysis_type){
    1212
     13        if (analysis_type==NULL){
     14                throw ErrorException(__FUNCT__," analysis_type is NULL");
     15        }
    1316
    1417        if (strcmp(analysis_type,"control")==0){
Note: See TracChangeset for help on using the changeset viewer.