Fixed leak in Atom entry
[cascardo/atompub.git] / atom / entry.c
1 /*
2  *  Copyright (C) 2007  Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License along
15  *  with this program; if not, write to the Free Software Foundation, Inc.,
16  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19
20 #include <atompub/atom.h>
21
22 #include <glib.h>
23
24 struct _atom_entry
25 {
26   char *data;
27   size_t len;
28 };
29
30 Atom *
31 atom_new_data_len (char *data, size_t len)
32 {
33   Atom *atom = g_slice_new (Atom);
34   atom->data = g_memdup (data, len);
35   atom->len = len;
36   return atom;
37 }
38
39 void
40 atom_delete (Atom *atom)
41 {
42   if (atom->data)
43     g_free (atom->data);
44   g_slice_free (Atom, atom);
45 }
46
47 char *
48 atom_string (Atom *atom)
49 {
50   return atom->data;
51 }
52
53 size_t
54 atom_len (Atom *atom)
55 {
56   return atom->len;
57 }