summaryrefslogtreecommitdiffhomepage
path: root/mrbgems
AgeCommit message (Collapse)Author
2016-11-29Interpret argument in 'f ()' as nil instead of nothingBouke van der Bijl
2016-11-27parse.y: use opt_paren_args to simplify yield ruleYukihiro "Matz" Matsumoto
2016-11-27Add NULL checks for Time data retrievalYukihiro "Matz" Matsumoto
2016-11-26removed failing test for Time#initialize; ref #3295Yukihiro "Matz" Matsumoto
2016-11-26Merge pull request #3293 from ksss/enum-firstYukihiro "Matz" Matsumoto
Fix incompatibility for Enumerable#first
2016-11-25Fix null pointer dereference in mrb_time_initializeBouke van der Bijl
Reported by https://hackerone.com/raydot
2016-11-25Argument more strictlyksss
2016-11-25Like a Enumerable#takeksss
2016-11-25stop warnings in the test; ref #3280Yukihiro "Matz" Matsumoto
2016-11-25resolve conflict; ref #3279Yukihiro "Matz" Matsumoto
2016-11-25resolve conflict; ref #3281Yukihiro "Matz" Matsumoto
2016-11-25resolve conflict; ref #3283Yukihiro "Matz" Matsumoto
2016-11-25resolve conflict; ref #3285Yukihiro "Matz" Matsumoto
2016-11-25resolve conflict; ref #3286Yukihiro "Matz" Matsumoto
2016-11-25Merge pull request #3287 from bouk/proc-arityYukihiro "Matz" Matsumoto
Fix calling .arity on Proc with undefined `initialize`
2016-11-25Merge pull request #3282 from bouk/fix-break-instance-classYukihiro "Matz" Matsumoto
Fix segfault when defining class inside instance_exec on primitive
2016-11-25Merge pull request #3280 from bouk/struct-redefineYukihiro "Matz" Matsumoto
Remove constant when a struct is redefined.
2016-11-25Merge pull request #3289 from bouk/setbyte-lenYukihiro "Matz" Matsumoto
Read length after args in String#setbyte
2016-11-24Fix unsafe peephole optimizationFrancis Bogsanyi
Reported by https://hackerone.com/dkasak
2016-11-24Read length after args in String#setbyteCraig Lehmann
Prevents RCE Reported by https://hackerone.com/raydot
2016-11-24Fix calling .arity on Proc with undefined `initialize`Francois Chagnon
Reported by @bouk
2016-11-24Fix segfault caused by empty condition in ternaryBouke van der Bijl
Reported by https://hackerone.com/jpenalbae
2016-11-24Fix codegen issue causing misaligned registerBouke van der Bijl
Reported by https://hackerone.com/haquaman
2016-11-24Fix segfault on method call with exactly 127 argumentsBouke van der Bijl
Reported by https://hackerone.com/dkasak
2016-11-24Fix segfault when defining class inside instance_exec on primitiveBouke van der Bijl
2016-11-24Don't allow array parameter in Struct.newClayton Smith
2016-11-24Remove constant when a struct is redefined.Clayton Smith
2016-11-24Fix nested empty heredoc causing segfaultBouke van der Bijl
As reported by https://hackerone.com/jpenalbae
2016-11-24use MRB_PRId instead of %d for mrb_intYukihiro "Matz" Matsumoto
2016-11-24Merge pull request #3277 from dabroz/feature-float-toleranceYukihiro "Matz" Matsumoto
Fixed float tolerance in tests when MRB_USE_FLOAT is set
2016-11-24redo should work well in for statement; fix #3275Yukihiro "Matz" Matsumoto
2016-11-24Fixed Range.size to use proper floating point toleranceTomasz Dąbrowski
2016-11-24Fixed float tolerance in tests when MRB_USE_FLOAT is setTomasz Dąbrowski
2016-11-24Time#initialize_copy: Check if source time is initialized.Yukihiro "Matz" Matsumoto
To prevent crash from nasty code like: class Time def initialize end end a = Time.new b = Time.new a.initialize_copy b
2016-11-24Merge pull request #3271 from ksss/enum-takeYukihiro "Matz" Matsumoto
Fix Enumeable#take some incompatibility
2016-11-24Relax 'void value expression' check that was too strictYukihiro "Matz" Matsumoto
2016-11-24Shouldn't call `each` method if size is 0ksss
2016-11-24Support object does'n have `<` methodksss
2016-11-24Add "void value expression" check to the parser.Yukihiro "Matz" Matsumoto
2016-11-24Add forgotten loop_pop() in NODE_OP_ASGN codegenYukihiro "Matz" Matsumoto
2016-11-24Fix for Windows-specific mruby C++ issuesTomasz Dąbrowski
2016-11-24Fixes for compiling mruby as C++Tomasz Dąbrowski
2016-11-24Merge pull request #3269 from bouk/fix-printf-segfaultYukihiro "Matz" Matsumoto
Fix segfault when Fixnum#chr doesn't return a string
2016-11-23Fix segfault when Fixnum#chr doesn't return a stringBouke van der Bijl
2016-11-23Fix segfault in Array#sampleBouke van der Bijl
2016-11-23codegen_scope should not keep old iseq ptr from irepYukihiro "Matz" Matsumoto
2016-11-22remove unnecessary ".!"; ref #3261Yukihiro "Matz" Matsumoto
2016-11-21Reimplements Range#firstksss
Range#first shouldn't call `Range#to_a` on infinity range.
2016-11-21Fix for sprintf test exceeding bounds with MRB_INT16Tomasz Dąbrowski
2016-11-21Merge pull request #3257 from ksss/range-sizeYukihiro "Matz" Matsumoto
Fix Range#size results