comparison src/protocols/msn/msn.c @ 6832:f03c0085c424

[gaim-migrate @ 7377] Removed the g_free wrapper from MSN. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 14 Sep 2003 03:26:27 +0000
parents 1cfbb731aa1f
children bd433a45a463
comparison
equal deleted inserted replaced
6831:a372cf34387e 6832:f03c0085c424
37 37
38 static GaimPlugin *my_protocol = NULL; 38 static GaimPlugin *my_protocol = NULL;
39 39
40 static char *msn_normalize(const char *str); 40 static char *msn_normalize(const char *str);
41 41
42 void
43 msn_free(void *ptr, const char *filename, int line)
44 {
45 gaim_debug_misc("msn", "Freeing pointer %p at %s:%d\n",
46 ptr, filename, line);
47 if (ptr == NULL)
48 abort();
49
50 real_g_free(ptr);
51 }
52
53 typedef struct 42 typedef struct
54 { 43 {
55 GaimConnection *gc; 44 GaimConnection *gc;
56 const char *passport; 45 const char *passport;
57 46