laruence / php-lua

This extension embeds the lua interpreter and offers an OO-API to lua variables and functions.
http://pecl.php.net/package/lua
Other
149 stars 50 forks source link

Fix allocation of lua object. #33

Closed sgolemon closed 7 years ago

sgolemon commented 7 years ago

Size the malloc using zend's helper. Use ecalloc over emalloc to make sure uninit'd structs are clear. No need to check return value as e*alloc() funcs can't fail.