Ignore:
Timestamp:
Oct 26, 2007 9:02:28 AM (17 years ago)
Author:
bennylp
Message:

Fixed warnings in PJLIB string_i.h about variable may not get initialized

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/include/pj/string_i.h

    r1397 r1527  
    195195        copy2.slen = pj_ansi_strlen(str2); 
    196196    } else { 
     197        copy2.ptr = NULL; 
    197198        copy2.slen = 0; 
    198199    } 
     
    298299        copy2.slen = pj_ansi_strlen(str2); 
    299300    } else { 
     301        copy2.ptr = NULL; 
    300302        copy2.slen = 0; 
    301303    } 
Note: See TracChangeset for help on using the changeset viewer.