Changeset 1195 in MondoRescue for branches/stable/mondo


Ignore:
Timestamp:
Feb 20, 2007, 2:15:31 PM (17 years ago)
Author:
Bruno Cornec
Message:

Removed 2 asserts which were generating invalid errors (chains were not empty or null so the function is probably wrong !!)

Location:
branches/stable/mondo/src/common
Files:
2 edited

Legend:

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

    r1186 r1195  
    108108    mr_msg(3, "Starting");
    109109    assert(bkpinfo != NULL);
    110     assert_string_is_neither_NULL_nor_zerolength(basic_call);
     110    // BERLIOS: doesn't work even if the string is correct !
     111    //assert_string_is_neither_NULL_nor_zerolength(basic_call);
    111112    assert_string_is_neither_NULL_nor_zerolength(isofile);
    112113    assert_string_is_neither_NULL_nor_zerolength(logstub);
  • branches/stable/mondo/src/common/libmondo-string.c

    r1180 r1195  
    414414
    415415    input = mr_malloc(2000);
    416     assert_string_is_neither_NULL_nor_zerolength(ip);
     416    // BERLIOS: seems to cause invalid errors
     417    //assert_string_is_neither_NULL_nor_zerolength(ip);
    417418    assert_string_is_neither_NULL_nor_zerolength(token);
    418419    assert(value != NULL);
Note: See TracChangeset for help on using the changeset viewer.