fix wrong context session list compare func

Mon, 21 Oct 2024 12:47:34 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Mon, 21 Oct 2024 12:47:34 +0200
changeset 830
349106ea431c
parent 827
d9928f11970f
child 831
f2ee3a5c976e

fix wrong context session list compare func

libidav/webdav.c file | annotate | diff | comparison | revisions
--- a/libidav/webdav.c	Fri Sep 13 18:21:04 2024 +0200
+++ b/libidav/webdav.c	Mon Oct 21 12:47:34 2024 +0200
@@ -50,7 +50,7 @@
     if(!context) {
         return NULL;
     }
-    context->sessions = cxLinkedListCreate(cxDefaultAllocator, cx_cmp_intptr, CX_STORE_POINTERS);
+    context->sessions = cxLinkedListCreate(cxDefaultAllocator, cx_cmp_ptr, CX_STORE_POINTERS);
     cxDefineDestructor(context->sessions, dav_session_destructor);
     context->http_proxy = calloc(1, sizeof(DavProxy));
     if(!context->http_proxy) {

mercurial