mirror of
				https://github.com/janet-lang/janet
				synced 2025-10-31 07:33:01 +00:00 
			
		
		
		
	Address issue #54
Bug when marshalling function environments that were still on a fiber stack.
This commit is contained in:
		| @@ -804,7 +804,7 @@ static const uint8_t *unmarshal_one_fiber( | ||||
|             data = unmarshal_one_env(st, data, &env, flags + 1); | ||||
|             if (env->offset != 0 && env->offset != offset) | ||||
|                 janet_panic("funcenv offset does not match fiber frame"); | ||||
|             if (env->length != 0 && env->length != offset) | ||||
|             if (env->length != 0 && env->length != length) | ||||
|                 janet_panic("funcenv length does not match fiber frame"); | ||||
|             env->offset = offset; | ||||
|             env->length = length; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Calvin Rose
					Calvin Rose