~ken-vandine/ubuntu/precise/telepathy-gabble/ubuntu

« back to all changes in this revision

Viewing changes to src/caps-hash.c

  • Committer: Bazaar Package Importer
  • Author(s): Dafydd Harries
  • Date: 2009-08-11 10:25:56 UTC
  • mfrom: (38.2.6 sid)
  • Revision ID: james.westby@ubuntu.com-20090811102556-bh1bc6tch1mmrbxs
New upstream version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
 
91
91
  g_free (field->field_name);
92
92
  g_ptr_array_foreach (field->values, (GFunc) g_free, NULL);
 
93
  g_ptr_array_free (field->values, TRUE);
93
94
 
94
95
  g_slice_free (DataFormField, field);
95
96
}
102
103
  g_free (form->form_type);
103
104
 
104
105
  g_ptr_array_foreach (form->fields, _free_field, NULL);
 
106
  g_ptr_array_free (form->fields, TRUE);
105
107
 
106
108
  g_slice_free (DataForm, form);
107
109
}