Changeset 22844


Ignore:
Timestamp:
06/15/18 07:10:30 (7 years ago)
Author:
bdef
Message:

BUG: fixing toolkits to be able to run from nc models

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/modules/ParseToolkitsOptionsx/ParseToolkitsOptionsx.cpp

    r22558 r22844  
    11/*!\file ParseToolkitsOptionsx
    2  * * \brief: parse options present in a petsc file, and create petsc options 
    3  * objects accordingly. This will be used to drive the behaviour of Toolkits for 
     2 * * \brief: parse options present in a petsc file, and create petsc options
     3 * objects accordingly. This will be used to drive the behaviour of Toolkits for
    44 * each analysis type.
    55 */
     
    5959                strings  = xNew<char*>(numanalyses);
    6060                toolkits = xNew<char*>(numanalyses);
    61                 for(i=0;i<numanalyses;i++) strings[i]  = NULL; 
    62                 for(i=0;i<numanalyses;i++) toolkits[i] = NULL; 
     61                for(i=0;i<numanalyses;i++) strings[i]  = NULL;
     62                for(i=0;i<numanalyses;i++) toolkits[i] = NULL;
    6363
    6464                /*Go back to beginning of file:*/
     
    6666                numanalyses=0;
    6767                while( fgets(line, sizeof line, fid)){
    68 
    6968                        /*skip comments and empty lines: */
    7069                        if ((line[0]=='%') || (line[0]=='\n') || (line[0]==' ') || (line[0]=='\t') || (line[0]=='\r'))continue;
     
    8079                                sscanf(line,"-%s %s",&word1[0],&word2[0]);
    8180                                if(strcmp(word1,"toolkit")!=0) _error_("toolkit option does not follow analysis");
    82                                 toolkit=xNew<char>((strlen(word2)+1)); 
     81                                toolkit=xNew<char>((strlen(word2)+1));
    8382                                xMemCpy<char>(toolkit,word2,(strlen(word2)+1));
    8483                                toolkits[numanalyses-1]=toolkit;
     
    8887                                /*this is an option corresponding to analysis numanalyses-1. Add it to the already existing options*/
    8988                                if(strings[numanalyses-1]==NULL){
    90                                         string=xNew<char>((strlen(line)+1)); 
     89                                        string=xNew<char>((strlen(line)+1));
    9190                                        xMemCpy<char>(string,line,(strlen(line)+1));
    9291
Note: See TracChangeset for help on using the changeset viewer.