• Show log

    Commit

  • Hash : 35ab76d0
    Author : Sam Lantinga
    Date : 2013-12-11T21:17:24

    Fixed bug 2050 - Obvious bugs in SDL_ltoa and SDL_lltoa
    
    pjz
    
    SDL_ltoa(-2147483648,s,10) only returns "-" because there is a bug in the code:
    
        if ( value < 0 ) {
            *bufp++ = '-';
            value = -value;
        }
    
    but -(-2147483648) is still -2147483648 (0x80000000) as signed int (or long), so the following loop doesn't run at all. Similar bug are also in SDL_lltoa.
    
    BTW, there is no sanity check for radix.
    

  • Properties

  • Git HTTP https://git.kmx.io/kc3-lang/SDL.git
    Git SSH git@git.kmx.io:kc3-lang/SDL.git
    Public access ? public
    Description

    Fork of https://github.com/libsdl-org/SDL

    Users
    thodg_w kc3_lang_org thodg_l thodg_m www_kmx_io thodg
    Tags