text-backend: minor fixes

* make sure deactivation is done consistently when a text_model
  is destroyed
* zero out allocated objects
This commit is contained in:
Philipp Brüschweiler 2012-07-11 22:25:30 +02:00 committed by Kristian Høgsberg
parent 591cfca4e8
commit 1746781385

View File

@ -45,15 +45,23 @@ struct input_method {
struct text_model *active_model;
};
static void
deactivate_text_model(struct text_model *text_model)
{
if (text_model->input_method->active_model == text_model) {
text_model->input_method->active_model = NULL;
wl_signal_emit(&text_model->input_method->ec->hide_input_panel_signal, text_model->input_method->ec);
}
}
static void
destroy_text_model(struct wl_resource *resource)
{
struct text_model *text_model = container_of(resource,
struct text_model, resource);
if (text_model->input_method->active_model == text_model) {
text_model->input_method->active_model = 0;
}
deactivate_text_model(text_model);
wl_list_remove(&text_model->link);
free(text_model);
@ -90,10 +98,7 @@ text_model_deactivate(struct wl_client *client,
{
struct text_model *text_model = resource->data;
if (text_model->input_method->active_model == text_model) {
text_model->input_method->active_model = NULL;
wl_signal_emit(&text_model->input_method->ec->hide_input_panel_signal, text_model->input_method->ec);
}
deactivate_text_model(text_model);
}
static void
@ -145,7 +150,7 @@ static void input_method_create_text_model(struct wl_client *client,
struct input_method *input_method = resource->data;
struct text_model *text_model;
text_model = malloc(sizeof *text_model);
text_model = calloc(1, sizeof *text_model);
text_model->resource.destroy = destroy_text_model;
@ -204,7 +209,7 @@ input_method_create(struct weston_compositor *ec)
{
struct input_method *input_method;
input_method = malloc(sizeof *input_method);
input_method = calloc(1, sizeof *input_method);
input_method->base.interface = &input_method_interface;
input_method->base.implementation = (void(**)(void)) &input_method_implementation;