index
:
mruby
master
mruby2-draft
removing-y-tab-c
revert-5391-throw
stable
web_export
Lightweight Ruby
realtradam
summary
refs
log
tree
commit
diff
homepage
log msg
author
committer
range
path:
root
/
src
/
load.c
Age
Commit message (
Expand
)
Author
2013-05-26
Add MRB_WORD_BOXING mode (represent mrb_value as a word)
kimu_shu
2013-05-13
Fix early free of irep->filename
Carson McDonald
2013-05-05
fix typos.
crimsonwoods
2013-04-26
Add void to function parameters. This is for compatibility with C++
Masaki Muranaka
2013-04-25
Remove redundant whitespaces. Just cosmetic.
Masaki Muranaka
2013-04-25
Add comments why there is no need to put the SIZE_ERROR check. It is for revi...
Masaki Muranaka
2013-04-25
Add error checks for small environments which pointer is less than 32bit. The...
Masaki Muranaka
2013-04-25
More strict NULL checks.
Masaki Muranaka
2013-04-25
Fix underlying memory leaks. When realloc is failed, memories are leaked.
Masaki Muranaka
2013-04-23
fix unnecessary irep_free
masahino
2013-04-22
Simplify load.c. Remove code clones. Suppress return paths.
Masaki Muranaka
2013-04-20
put spaces after if/while
Yukihiro "Matz" Matsumoto
2013-03-30
Add null char terminate to each symbol name.
Masaki Muranaka
2013-03-29
Add CHAR_BIT check. There are uint8_t to char conversions.
Masaki Muranaka
2013-03-29
Reduce temporary memory allocations. They are redundant.
Masaki Muranaka
2013-03-29
Modify the type of line-number to uint16_t. Type short is not portable. And i...
Masaki Muranaka
2013-03-29
Remove RiteFile as no used.
Masaki Muranaka
2013-03-28
Merge pull request #1101 from monaka/pr-cleanup-includes
Yukihiro "Matz" Matsumoto
2013-03-29
Rearrange SIZE_MAX. It is supported also VC++ since its version10. And there ...
Masaki Muranaka
2013-03-29
Sort include files. Some redundant includes are removed.
Masaki Muranaka
2013-03-29
Fixed wrong section size calculation
Yuichiro MASUI
2013-03-28
return value from fread(3) just cannot be ignored
Yukihiro "Matz" Matsumoto
2013-03-28
Catch return values to silent compiler
Daniel Bovensiepen
2013-03-27
Added debug infomation section into .mrb file
Yuichiro MASUI
2013-03-27
Remove unused variable
mattn
2013-03-27
bug in fread(3) error check
Yukihiro Matz Matsumoto
2013-03-27
resolve conflict from #964
Yukihiro Matz Matsumoto
2013-03-16
Remove stdlib.h from mruby.h. It is for portability (care for freestanding en...
Masaki Muranaka
2013-03-15
obsolete mrb_object; opposite of bc870ce
Yukihiro Matz Matsumoto
2013-03-09
Don't use int. It decreases portability. Use size_t as array index and leng...
Masaki Muranaka
2013-03-09
Sanity check. As there are implicaton SIZE_MAX >= UINT32_MAX in this code. Th...
Masaki Muranaka
2013-03-09
Clean up code.
Masaki Muranaka
2013-03-09
Store to *bin_size if bin_size != NULL.
Masaki Muranaka
2013-03-09
Use type cast not void* but char*. Don't substiture void pointers.
Masaki Muranaka
2013-03-08
Remove unused substitutions and calculations.
Masaki Muranaka
2013-03-08
Don't initialize variables that store result as MRB_DUMP_OK. It possibly caus...
Masaki Muranaka
2013-03-08
Change unsigned char to uint8_t
Yuichiro MASUI
2013-03-08
New mrb format. The detail is in https://github.com/mruby/mruby/issues/944
Yuichiro MASUI
2013-03-03
Remove trailing whitespaces. This is just a cosmetic change.
Masaki Muranaka
2013-02-23
Fix errors caused by stdio.h dependent code.
Masaki Muranaka
2013-02-15
Pluggable Regexp
mattn
2013-01-22
zero initialize hex buffers; close 768
Yukihiro Matz Matsumoto
2013-01-09
Fix error handlings.
Masaki Muranaka
2013-01-09
Merge branch 'master' of github.com:mruby/mruby into pr-strict-error-checking
Masaki Muranaka
2013-01-09
Extract each expresion in "if" statements. It is for maintainability.
Masaki Muranaka
2013-01-09
Remove redundant null checks.
Masaki Muranaka
2012-12-07
mange arena_idx smarter for smaller ARENA_SIZE; now default to 100 from 1024
Yukihiro Matz Matsumoto
2012-12-07
refactor and move irep malloc away to mrb_add_irep()
Yukihiro Matz Matsumoto
2012-12-05
rename mrb_load_irep etc. for naming consistency
Yukihiro Matz Matsumoto
2012-11-07
compatible with MSVC
skandhas
[next]