BUG: qsort() Sorts Huge String Arrays > 64K IncorrectlyLast reviewed: July 22, 1997Article ID: Q123496 |
1.50 1.51
WINDOWS
kbprg kbbuglist
The information in this article applies to:
The C Run-time (CRT) included with - Microsoft Visual C++ for Windows, version 1.5 and 1.51
SYMPTOMSUsing the C Run-time function qsort() to sort a two-dimensional character array that is greater than 64K in size may generate incorrect results such as missing the first element in the result, or causing the computer to hang (stop responding). This happens if a two-dimensional character array is used in the huge memory model or if a huge pointer is used in the other memory models.
RESOLUTIONTo correct the problem, use one of these workarounds:
STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATIONThe sample code below reproduces the problem. To work around the problem, compile the code WITHOUT switch /D"_PROBLEM".
Sample Code
/* Compile options needed: /AH /D"COLUMN=36" /D"_PROBLEM" */ /* -- test.c -- */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <search.h> #define ROW ( (0xffff/COLUMN) + 1 ) /* ( 65535/COLUMN ) + 1 */#ifdef _PROBLEM char TestString[ROW][COLUMN];#else struct Test { char string[COLUMN]; } TestString[ROW]; #endif
int cmp( const void *c1, const void *c2 ); /* User defined sort function */ void main(){ int i; for ( i=0; i<ROW; i++ ) {#ifdef _PROBLEM sprintf( TestString[i], "%6d\n", rand() );#else sprintf( TestString[i].string, "%6d\n", rand() );#endif }#ifdef _PROBLEM qsort( (void*)TestString, (size_t)ROW, (size_t)COLUMN, cmp );#else qsort( (void*)TestString, (size_t)ROW, sizeof(struct Test), cmp );#endif
for ( i=0; i<ROW; i++ ) {#ifdef _PROBLEM if ( TestString[i][0] == '\0' ) printf("TestString[%d] is empty.\n", i ); else printf("TestString[%d] = %s", i, TestString[i] );#else if ( TestString[i].string[0] == '\0' ) printf("TestString[%d] is empty.\n", i ); else printf("TestString[%d] = %s", i, TestString[i].string );#endif }}
int cmp( const void *c1, const void *c2 ){ #ifdef _PROBLEM return strcmp( c1, c2 );#else return strcmp( ((struct Test*)c1)->string, ((struct Test*)c2)->string );#endif }
|
Additional reference words: 1.50 1.51 buglist1.50 buglist1.51
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |