freebsd-ports/net-im/mbpurple/files/patch-microblog_mb__net.c
Mathieu Arnold 7ae7b018cc With the power of USES=dos2unix, get rid of most patches and files
with CRLF.

While there, run make makepatch, rename patches to use the new scheme,
and various fixes.

With hat:	portmgr
Sponsored by:	Absolight
2016-06-20 16:23:28 +00:00

18 lines
624 B
C

--- microblog/mb_net.c.orig 2016-06-20 15:55:29 UTC
+++ microblog/mb_net.c
@@ -160,13 +160,13 @@ void mb_conn_fetch_url_cb(PurpleUtilFetc
conn_data->fetch_url_data = NULL;
if(error_message != NULL) {
- mb_conn_data_free(conn_data);
if(conn_data->handler) {
retval = conn_data->handler(conn_data, conn_data->handler_data, error_message);
}
if(ma->gc != NULL) {
purple_connection_error_reason(ma->gc, PURPLE_CONNECTION_ERROR_NETWORK_ERROR, error_message);
}
+ mb_conn_data_free(conn_data);
} else {
mb_http_data_post_read(conn_data->response, url_text, len);
if(conn_data->handler) {