src/cx/map.h

changeset 984
e8f354a25ac8
parent 957
26e47a874f19
child 985
68754c7de906
--- a/src/cx/map.h	Sun Nov 03 20:15:14 2024 +0100
+++ b/src/cx/map.h	Thu Nov 07 20:22:56 2024 +0100
@@ -204,8 +204,8 @@
  *
  * @param map the map to be destroyed
  */
-__attribute__((__nonnull__))
 static inline void cxMapDestroy(CxMap *map) {
+    if (map == NULL) return;
     map->cl->destructor(map);
 }
 

mercurial