Skip to content
New issue

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

fixed PHP7 segfault caused by efree in mosquitto_message_object_destroy #60

Merged
merged 1 commit into from
Nov 1, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fixed PHP7 segfault caused by efree
  • Loading branch information
argakon committed Nov 1, 2016
commit 5dd89a8fec00524befb073c225bb45ed742afed1
2 changes: 2 additions & 0 deletions mosquitto_message.c
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,9 @@ static void mosquitto_message_object_destroy(zend_object *object TSRMLS_DC)
efree(message->message.payload);
}

#ifndef ZEND_ENGINE_3
efree(object);
#endif
}

#ifdef ZEND_ENGINE_3
Expand Down