[Vm-dev] VM Maker: VMMaker.oscog-eem.2806.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Sep 13 22:37:50 UTC 2020


Eliot Miranda uploaded a new version of VMMaker to project VM Maker:
http://source.squeak.org/VMMaker/VMMaker.oscog-eem.2806.mcz

==================== Summary ====================

Name: VMMaker.oscog-eem.2806
Author: eem
Time: 13 September 2020, 3:37:41.44063 pm
UUID: 4298eb4c-c9e8-4fb2-af22-b8cceb0e07aa
Ancestors: VMMaker.oscog-eem.2805

Fix slip in primitiveGSMNewState

=============== Diff against VMMaker.oscog-eem.2805 ===============

Item was changed:
  ----- Method: SoundCodecPlugin>>primitiveGSMNewState (in category 'gsm 6.10 codec') -----
  primitiveGSMNewState
  
  	<export: true>
  	(interpreterProxy
  				instantiateClass: interpreterProxy classByteArray
  				indexableSize: self gsmStateBytes)
+ 		ifNil: [interpreterProxy primitiveFailFor: PrimErrNoMemory]
- 		ifNil: [self primitiveFailFor: PrimErrNoMemory]
  		ifNotNil:
  			[:state|
  			 self gsmInitState: state + BaseHeaderSize.
  			 interpreterProxy methodReturnValue: state]!



More information about the Vm-dev mailing list