pancake 122948b466
Fix UB in core.java plugin (#17831)
* Fix UB in core.java plugin

libr/core/p/core_java.c: In function 'r_cmd_java_handle_help':
libr/core/p/core_java.c:390:34: warning: iteration 20 invokes undefined behavior [-Waggressive-loop-optimizations]
   help_msg[3 + (i * 3) + 0] = cmd->name;
                               ~~~^~~~~~
libr/..//libr/core/p/core_java.c:388:2: note: within this loop
  for (i = 0; i < END_CMDS; i++) {

* Cleanup and remove last LIST_CODE_REFS refs for core.java
* lcr command was removed in 3ead80cca8a9e03ce4c755718d6772cf583d5716
2020-11-23 16:45:56 +08:00
..