Ignore:
Timestamp:
Apr 6, 2001, 7:12:11 PM (24 years ago)
Author:
umoeller
Message:

misc changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/stringh.c

    r54 r55  
    11901190 *
    11911191 *@@added V0.9.0 [umoeller]
     1192 *@@changed V0.9.9 (2001-04-04) [umoeller]: this failed on "123" strings in quotes, fixed
    11921193 */
    11931194
     
    11981199    PSZ pParam;
    11991200    if ((pParam = strhFindAttribValue(pszSearchIn, pszTag)))
     1201    {
     1202        if (    (*pParam == '\"')
     1203             || (*pParam == '\'')
     1204           )
     1205            pParam++;           // V0.9.9 (2001-04-04) [umoeller]
     1206
    12001207        sscanf(pParam, "%ld", pl);
     1208    }
    12011209
    12021210    return (pParam);
Note: See TracChangeset for help on using the changeset viewer.