- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/twitter/twitter_http.c
rbbff22d r5ebff60 24 24 /***************************************************************************\ 25 25 * * 26 * Some fun ctions within this file have been copied from other files within *26 * Some funtions within this file have been copied from other files within * 27 27 * BitlBee. * 28 28 * * … … 53 53 char *tmp; 54 54 GString *request = g_string_new(""); 55 void *ret = NULL;55 void *ret; 56 56 char *url_arguments; 57 57 url_t *base_url = NULL; … … 72 72 base_url = g_new0(url_t, 1); 73 73 if (!url_set(base_url, url_string)) { 74 goto error; 74 g_free(base_url); 75 return NULL; 75 76 } 76 77 } … … 131 132 } 132 133 133 error:134 134 g_free(url_arguments); 135 135 g_string_free(request, TRUE);
Note: See TracChangeset
for help on using the changeset viewer.