Ignore:
Timestamp:
Jun 25, 2013, 10:53:14 PM (11 years ago)
Author:
Bruno Cornec
Message:
  • Apply fixes to 3.1 tree so that at least mondo compiles again (but that branch probably doesn't work at all again).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.1/mondo/src/common/libmondo-fork.c

    r3148 r3161  
    4242    char *newcall = NULL;
    4343    char *tmp = NULL;
    44     char *p;
    45     char *p;
    4644
    4745    /*@ pointers **************************************************** */
    4846    FILE *fin = NULL;
     47    int res = 0;
    4948
    5049    /*@******************************************************************** */
     
    6059    mr_asprintf(result, "");
    6160
    62     system(newcall);
     61    res = system(newcall);
     62    if (res != 0) {
     63        //FIXME
     64    }
    6365    mr_free(newcall);
    6466
Note: See TracChangeset for help on using the changeset viewer.