libpurple/protocols/gg/libgaduw.c

changeset 41762
5c21747ff7dc
parent 41091
fa2d6b0a4912
child 42085
a76f1668564c
--- a/libpurple/protocols/gg/libgaduw.c	Thu Sep 29 21:44:01 2022 -0500
+++ b/libpurple/protocols/gg/libgaduw.c	Thu Sep 29 23:43:08 2022 -0500
@@ -173,7 +173,7 @@
 	}
 
 	if (req->h->state != GG_STATE_DONE) {
-		purple_input_remove(req->inpa);
+		g_source_remove(req->inpa);
 		req->inpa = ggp_purplew_http_input_add(req->h,
 			ggp_libgaduw_http_handler, req);
 		return;
@@ -206,7 +206,7 @@
 		ggp_purplew_request_processing_done(req->processing);
 		req->processing = NULL;
 	}
-	purple_input_remove(req->inpa);
+	g_source_remove(req->inpa);
 	req->cb(req->h, success, req->cancelled, req->user_data);
 	req->h->destroy(req->h);
 	g_free(req);

mercurial