Skip to content

Commit 3946aa9

Browse files
ajyoung-oraclemcb30
authored andcommittedJan 15, 2019
[libc] Fix strcmp()/strncmp() to return proper values
Fix strcmp() and strncmp() to return proper standard positive/negative values for unequal strings. Current implementation is backwards (i.e. the functions are returning negative when should be positive and vice-versa). Currently all consumers of these functions only check the return value for ==0 or !=0 and so we can safely change the implementation without breaking things. Signed-off-by: Aaron Young <Aaron.Young@oracle.com> Modified-by: Michael Brown <mcb30@ipxe.org> Signed-off-by: Michael Brown <mcb30@ipxe.org>
1 parent e226fec commit 3946aa9

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
 

‎src/core/string.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ int strncmp ( const char *first, const char *second, size_t max ) {
173173
int diff;
174174

175175
for ( ; max-- ; first_bytes++, second_bytes++ ) {
176-
diff = ( *second_bytes - *first_bytes );
176+
diff = ( *first_bytes - *second_bytes );
177177
if ( diff )
178178
return diff;
179179
if ( ! *first_bytes )
@@ -195,8 +195,8 @@ int strcasecmp ( const char *first, const char *second ) {
195195
int diff;
196196

197197
for ( ; ; first_bytes++, second_bytes++ ) {
198-
diff = ( toupper ( *second_bytes ) -
199-
toupper ( *first_bytes ) );
198+
diff = ( toupper ( *first_bytes ) -
199+
toupper ( *second_bytes ) );
200200
if ( diff )
201201
return diff;
202202
if ( ! *first_bytes )

‎src/tests/string_test.c

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ static void string_test_exec ( void ) {
8888
ok ( strcmp ( "Hello", "hello" ) != 0 );
8989
ok ( strcmp ( "Hello", "Hello world!" ) != 0 );
9090
ok ( strcmp ( "Hello world!", "Hello" ) != 0 );
91+
ok ( strcmp ( "abc", "def" ) < 0 );
9192

9293
/* Test strncmp() */
9394
ok ( strncmp ( "", "", 0 ) == 0 );

0 commit comments

Comments
 (0)