Gary-Hobson commented on code in PR #11448:
URL: https://github.com/apache/nuttx/pull/11448#discussion_r1439601652


##########
libs/libc/symtab/symtab_findbyvalue.c:
##########
@@ -92,7 +92,7 @@ symtab_findbyvalue(FAR const struct symtab_s *symtab,
         }
       else if (symtab[mid].sym_value < value)
         {
-          if (symtab[mid + 1].sym_value >= value)
+          if (symtab[mid + 1].sym_value > value)

Review Comment:
   I haven't confirmed the result of this case yet.  I will update the patch 
after verification later



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to