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 critical segfault, memory leak and default keepalive #54

Merged
merged 4 commits into from
Oct 22, 2016
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fixed memory leaks
  • Loading branch information
argakon committed Oct 18, 2016
commit 4141a12802a33f69f9f0593de69cb864ad646863
3 changes: 1 addition & 2 deletions mosquitto_message.c
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ static void mosquitto_message_object_destroy(zend_object *object TSRMLS_DC)
#else
zend_hash_destroy(message->std.properties);
FREE_HASHTABLE(message->std.properties);

#endif
if (message->owned_topic == 1) {
efree(message->message.topic);
}
Expand All @@ -502,7 +502,6 @@ static void mosquitto_message_object_destroy(zend_object *object TSRMLS_DC)
}

efree(object);
#endif
}

#ifdef ZEND_ENGINE_3
Expand Down