Changeset 13800


Ignore:
Timestamp:
10/22/12 15:20:34 (12 years ago)
Author:
Mathieu Morlighem
Message:

CHG: safer way to call str().c_str() (see cppcheck http://sourceforge.net/apps/trac/cppcheck/ticket/3826)

Location:
issm/trunk-jpl/src/c
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/classes/bamg/Mesh.cpp

    r13761 r13800  
    10081008
    10091009                /*Intermediary*/
    1010                 int i,k,num;
    1011                 int verbose=0;
     1010                int i,k;
    10121011
    10131012                /*output*/
    10141013                int* index=NULL;
     1014                int  num=0;
    10151015
    10161016                /*Get number of triangles*/
     
    10231023                if (k){
    10241024                        index=xNew<int>(3*k);
    1025                         num=0;
    10261025                        for (i=0;i<nbt;i++){
    10271026                                Triangle &t=triangles[i];
  • issm/trunk-jpl/src/c/shared/Exceptions/Exceptions.cpp

    r13701 r13800  
    6868        }
    6969
    70         return buffer.str().c_str();
     70        const string buffer2 = buffer.str();
     71        return buffer2.c_str();
    7172}/*}}}*/
    7273const char* ErrorException::PythonReport() const{/*{{{*/
     
    8384        }
    8485
    85         return buffer.str().c_str();
     86        const string buffer2 = buffer.str();
     87        return buffer2.c_str();
    8688}/*}}}*/
Note: See TracChangeset for help on using the changeset viewer.