Custom Query (245 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (4 - 6 of 245)

1 2 3 4 5 6 7 8 9 10 11 12
Ticket Resolution Summary Owner Reporter
#115 fixed weakld: Don't bitch about export aliases bird bird
Description

weakld always bitches about the exported name when seing:

EXPORTS
    ExportedName = _InternalName
#219 fixed wcscmp() and wcsncmp() are broken bird dmik
Description

wcscmp() and wcsncmp() assume that wchar_t is int while it seems to be short unsigned int by default (and may be made such with -fshort-wchar). This breaks the comparison results by usually negating them which greatly confuses applications.

Attached is a simple patch that casts wchar_t to int before getting the result of the comparison.

#227 invalid wcrtomb() broken bird Silvan Scherrer
Description

this testcase shows the broken behaviour

#include <stdlib.h> #include <stdio.h>

int main() {

char buf[256] = {0}; int rc = wctomb(buf, 0xE4); printf("rc %d char %02x (%c)\n", rc, (unsigned char)buf[0], buf[0]); return 0;

}

1 2 3 4 5 6 7 8 9 10 11 12
Note: See TracQuery for help on using queries.