| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-07-25 | Remove redundant include headers. | Yukihiro "Matz" Matsumoto | |
| - stdlib.h - stddef.h - stdint.h - stdarg.h - limits.h - float.h | |||
| 2021-07-08 | mruby-bin-debugger: remove unused local variables. | Yukihiro "Matz" Matsumoto | |
| 2021-07-08 | mruby-bin-debugger: rename prefix 'mrb_debug_' to `mrdb_`. | Yukihiro "Matz" Matsumoto | |
| 2021-07-06 | Merge branch 'mrb_debug_strdup-and-strndup' of ↵ | Yukihiro "Matz" Matsumoto | |
| https://github.com/cremno/mruby into cremno-mrb_debug_strdup-and-strndup | |||
| 2019-04-01 | Avoid keeping pointers from `mrb_sym2name_len()`; fix #4342 | Yukihiro "Matz" Matsumoto | |
| The addresses for packed inline symbols reference `mrb->symbuf` that could be overridden by the later call of `mrb_sym2name_len`. Since file names in call stack information are kept as symbols, keeping the address in the C structures could cause problems like #4342. This changes small incompatible changes in function prototypes: * `mrb_parser_get_filename`: return value changed to `mrb_sym`. * `mrb_debug_get_filename`: add `mrb_state*` as a first argument. * `mrb_debug_get_line`: ditto. I believe above functions are almost internal, and no third-party mrbgem use them. | |||
| 2017-12-23 | Do not initialize a local variable soon to be assigned. | Yukihiro "Matz" Matsumoto | |
| 2017-12-23 | Make source compilable with C++17 | Lothar Scholz | |
| Changes applied: - Removing "register" keyword - Fixing const pointer to pointer assignments - Adding type casts to rb_malloc calls | |||
| 2017-08-04 | Fixed a invalid source path name on mruby debugger. | Hiroshi Mimaki | |
| 2017-02-08 | Fixed mixture of signed/unsigned integers | Yukihiro "Matz" Matsumoto | |
| in mrbgems/mruby-bin-debugger. | |||
| 2015-12-26 | remove execute bit from mrbgems/mruby-bin-debugger files | Yukihiro "Matz" Matsumoto | |
| 2015-11-27 | include changed from by quotes ("") to by brackets (<>); close #3032 | Yukihiro "Matz" Matsumoto | |
| 2015-01-03 | Use sizeof() instead of strlen(). | Tatsuhiko Kubo | |
| 2015-01-01 | Remove redundant NULL checks for mrb_malloc(). | Tatsuhiko Kubo | |
| 2014-12-02 | use mrb_debug_strdup() and mrb_debug_strndup() | cremno | |
| As they are safer to use than mrb_malloc()+strlen()+strncpy() (see #2652). | |||
| 2014-11-26 | Merge pull request #2652 from cremno/mrdb-add-missing-null-termination | Yukihiro "Matz" Matsumoto | |
| mrdb: add missing null-termination | |||
| 2014-11-26 | free return value of dirname() | cremno | |
| 2014-11-25 | add missing null-termination | cremno | |
| 2014-11-20 | remove cast | cremno | |
| C99+TC3, 7.19.7.1p2: [...] the fgetc function obtains that character as an unsigned char converted to an int [...] | |||
| 2014-11-18 | Add mruby debugger (mrdb) | mimaki | |
