We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Relevant code:
PHP_METHOD(Phalcon_Image_Adapter_Imagick, _mask){ zval *mask, *im, *mask_im, *realpath, *blob, *matte, *composite, *tmp, *index, *next = NULL, *type; zend_class_entry *ce0; PHALCON_MM_GROW(); phalcon_fetch_params(1, 1, 0, &mask); PHALCON_OBS_VAR(im); phalcon_read_property_this(&im, this_ptr, SL("_image"), PH_NOISY_CC); PHALCON_OBS_VAR(type); phalcon_read_property_this(&type, this_ptr, SL("_type"), PH_NOISY_CC); PHALCON_INIT_VAR(mask_im); object_init_ex(mask_im, ce0);
In object_init_ex() ce0 is not initialized. Did you forget to call something like
object_init_ex()
ce0
ce0 = zend_fetch_class(SL("Imagick"), ZEND_FETCH_CLASS_AUTO TSRMLS_CC);
❓
The text was updated successfully, but these errors were encountered:
@dreamsxin Could you please take a look?
Sorry, something went wrong.
Check them now
@sjinks In the Travis has error, You have the time please help look?
Starting test 'ImageTest::testGD'. zend_mm_heap corrupted
Merge pull request #1221 from dreamsxin/bug_1214_new
6979900
Fix BUG #1214
No branches or pull requests
Relevant code:
In
object_init_ex()
ce0
is not initialized. Did you forget to call something like❓
The text was updated successfully, but these errors were encountered: