Changes in common/str.c [b31323f:45adeeb] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • common/str.c

    rb31323f r45adeeb  
    427427        char32_t ch = _str_decode(str, offset, size, &mb);
    428428
    429         if (ch == CHAR_INVALID)
     429        if (ch == CHAR_INVALID || mb.state)
    430430                return U_SPECIAL;
    431431
    432         if (mb.state)
    433                 return U_SPECIAL;
    434 
    435432        return ch;
     433}
     434
     435char32_t str_decode_r(const char *str, size_t *offset, size_t size,
     436        char32_t replacement, mbstate_t *mb)
     437{
     438        char32_t ch = _str_decode(str, offset, size, mb);
     439        return (ch == CHAR_INVALID) ? replacement : ch;
    436440}
    437441
Note: See TracChangeset for help on using the changeset viewer.