Skip to content

Commit

Permalink
Wire up handlers properly
Browse files Browse the repository at this point in the history
  • Loading branch information
mgdm committed Sep 23, 2013
1 parent 365b144 commit f004697
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mosquitto_message.c
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ static zend_object_value mosquitto_message_object_new() {
object_properties_init(&message_obj->std, mosquitto_ce_message);
#endif
retval.handle = zend_objects_store_put(message_obj, NULL, (zend_objects_free_object_storage_t) mosquitto_message_object_destroy, NULL TSRMLS_CC);
retval.handlers = &mosquitto_std_object_handlers;
retval.handlers = &mosquitto_message_object_handlers;
return retval;
}

Expand Down

0 comments on commit f004697

Please sign in to comment.