Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/twitter/twitter_http.c

    rbbff22d r5ebff60  
    2424/***************************************************************************\
    2525*                                                                           *
    26 *  Some functions within this file have been copied from other files within  *
     26*  Some funtions within this file have been copied from other files within  *
    2727*  BitlBee.                                                                 *
    2828*                                                                           *
     
    5353        char *tmp;
    5454        GString *request = g_string_new("");
    55         void *ret = NULL;
     55        void *ret;
    5656        char *url_arguments;
    5757        url_t *base_url = NULL;
     
    7272                base_url = g_new0(url_t, 1);
    7373                if (!url_set(base_url, url_string)) {
    74                         goto error;
     74                        g_free(base_url);
     75                        return NULL;
    7576                }
    7677        }
     
    131132        }
    132133
    133 error:
    134134        g_free(url_arguments);
    135135        g_string_free(request, TRUE);
Note: See TracChangeset for help on using the changeset viewer.