--- a/src/tools/wstool.c Mon Feb 10 17:44:51 2025 +0100 +++ b/src/tools/wstool.c Sun Mar 02 18:10:52 2025 +0100 @@ -67,14 +67,14 @@ fprintf(stderr, "Error: No Runtime element in %s\n", configfile); return -1; } - if(list->size != 1) { + if(cxListSize(list) != 1) { fprintf(stderr, "Error: Multiple Runtime elements in %s\n", configfile); return -1; } ConfigNode *runtime = cxListAt(list, 0); cxstring tmp = serverconfig_object_directive_value(runtime, cx_str("Temp")); - cxListDestroy(list); + cxListFree(list); if(!tmp.ptr) { fprintf(stderr, "Error: No Temp directive in Runtime Object\n");