From ee87c46227c838961250bb8d50edca57ac154462 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Sat, 12 Jun 2021 20:07:47 +0800 Subject: Further simplify icclient_results function --- client.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'client.c') diff --git a/client.c b/client.c index 04368c8..d693996 100644 --- a/client.c +++ b/client.c @@ -13,22 +13,17 @@ extern size_t icclient_catalog_results(void *, size_t, size_t, void *); bool icclient_init(const char *url, const char *certificate) { - icclient_catalog_init(); return icclient_request_init(url, certificate); } -void icclient_results(const char *prod_group, - void (*callback)(struct icclient_catalog *), struct icclient_catalog **catalog, icclient_handler handler) +void icclient_results(const char *prod_group, void (*callback)(struct icclient_catalog *), icclient_handler handler) { char nonspaced[strlen(prod_group) + 1]; strcpy(nonspaced, prod_group); char *space = NULL; while ((space = strchr(nonspaced, ' '))) *space = '-'; - struct icclient_catalog_callback *catalog_callback = malloc(sizeof(struct icclient_catalog_callback)); - catalog_callback->catalog = catalog; - catalog_callback->callback = callback; - request(handler ? handler : icclient_catalog_results, (void *)catalog_callback, 0, "%s", nonspaced); + request(handler ? handler : icclient_catalog_results, (void *)callback, 0, "%s", nonspaced); } void icclient_flypage(const char *sku, icclient_handler handler, struct icclient_product **productptr) -- cgit v1.2.3