Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1 | /** |
| 2 | * @file tree_schema.c |
| 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
| 4 | * @brief Schema tree implementation |
| 5 | * |
| 6 | * Copyright (c) 2015 - 2018 CESNET, z.s.p.o. |
| 7 | * |
| 8 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 9 | * You may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
| 11 | * |
| 12 | * https://opensource.org/licenses/BSD-3-Clause |
| 13 | */ |
| 14 | |
| 15 | #include "common.h" |
| 16 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 17 | #include "libyang.h" |
| 18 | #include "context.h" |
| 19 | #include "tree_schema_internal.h" |
| 20 | #include "xpath.h" |
| 21 | |
| 22 | #define FREE_ARRAY(CTX, ARRAY, FUNC) {uint64_t c__; LY_ARRAY_FOR(ARRAY, c__){FUNC(CTX, &(ARRAY)[c__]);}LY_ARRAY_FREE(ARRAY);} |
| 23 | #define FREE_MEMBER(CTX, MEMBER, FUNC) if (MEMBER) {FUNC(CTX, MEMBER);free(MEMBER);} |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 24 | #define FREE_STRINGS(CTX, ARRAY) {uint64_t c__; LY_ARRAY_FOR(ARRAY, c__){FREE_STRING(CTX, ARRAY[c__]);}LY_ARRAY_FREE(ARRAY);} |
| 25 | |
| 26 | static void lysp_grp_free(struct ly_ctx *ctx, struct lysp_grp *grp); |
| 27 | static void lysp_node_free(struct ly_ctx *ctx, struct lysp_node *node); |
| 28 | |
| 29 | static void |
| 30 | lysp_stmt_free(struct ly_ctx *ctx, struct lysp_stmt *stmt) |
| 31 | { |
| 32 | struct lysp_stmt *child, *next; |
| 33 | |
| 34 | FREE_STRING(ctx, stmt->stmt); |
| 35 | FREE_STRING(ctx, stmt->arg); |
| 36 | |
| 37 | LY_LIST_FOR_SAFE(stmt->child, next, child) { |
| 38 | lysp_stmt_free(ctx, child); |
| 39 | } |
| 40 | |
| 41 | free(stmt); |
| 42 | } |
| 43 | |
| 44 | static void |
| 45 | lysp_ext_instance_free(struct ly_ctx *ctx, struct lysp_ext_instance *ext) |
| 46 | { |
| 47 | struct lysp_stmt *stmt, *next; |
| 48 | |
| 49 | FREE_STRING(ctx, ext->name); |
| 50 | FREE_STRING(ctx, ext->argument); |
| 51 | |
| 52 | LY_LIST_FOR_SAFE(ext->child, next, stmt) { |
| 53 | lysp_stmt_free(ctx, stmt); |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | static void |
| 58 | lysp_import_free(struct ly_ctx *ctx, struct lysp_import *import) |
| 59 | { |
| 60 | /* imported module is freed directly from the context's list */ |
| 61 | FREE_STRING(ctx, import->name); |
| 62 | FREE_STRING(ctx, import->prefix); |
| 63 | FREE_STRING(ctx, import->dsc); |
| 64 | FREE_STRING(ctx, import->ref); |
| 65 | FREE_ARRAY(ctx, import->exts, lysp_ext_instance_free); |
| 66 | } |
| 67 | |
| 68 | static void |
| 69 | lysp_include_free(struct ly_ctx *ctx, struct lysp_include *include) |
| 70 | { |
| 71 | if (include->submodule) { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 72 | lysp_submodule_free(ctx, include->submodule); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 73 | } |
| 74 | FREE_STRING(ctx, include->name); |
| 75 | FREE_STRING(ctx, include->dsc); |
| 76 | FREE_STRING(ctx, include->ref); |
| 77 | FREE_ARRAY(ctx, include->exts, lysp_ext_instance_free); |
| 78 | } |
| 79 | |
| 80 | static void |
| 81 | lysp_revision_free(struct ly_ctx *ctx, struct lysp_revision *rev) |
| 82 | { |
| 83 | FREE_STRING(ctx, rev->dsc); |
| 84 | FREE_STRING(ctx, rev->ref); |
| 85 | FREE_ARRAY(ctx, rev->exts, lysp_ext_instance_free); |
| 86 | } |
| 87 | |
| 88 | static void |
| 89 | lysp_ext_free(struct ly_ctx *ctx, struct lysp_ext *ext) |
| 90 | { |
| 91 | FREE_STRING(ctx, ext->name); |
| 92 | FREE_STRING(ctx, ext->argument); |
| 93 | FREE_STRING(ctx, ext->dsc); |
| 94 | FREE_STRING(ctx, ext->ref); |
| 95 | FREE_ARRAY(ctx, ext->exts, lysp_ext_instance_free); |
| 96 | } |
| 97 | |
| 98 | static void |
| 99 | lysp_feature_free(struct ly_ctx *ctx, struct lysp_feature *feat) |
| 100 | { |
| 101 | FREE_STRING(ctx, feat->name); |
| 102 | FREE_STRINGS(ctx, feat->iffeatures); |
| 103 | FREE_STRING(ctx, feat->dsc); |
| 104 | FREE_STRING(ctx, feat->ref); |
| 105 | FREE_ARRAY(ctx, feat->exts, lysp_ext_instance_free); |
| 106 | } |
| 107 | |
| 108 | static void |
| 109 | lysp_ident_free(struct ly_ctx *ctx, struct lysp_ident *ident) |
| 110 | { |
| 111 | FREE_STRING(ctx, ident->name); |
| 112 | FREE_STRINGS(ctx, ident->iffeatures); |
| 113 | FREE_STRINGS(ctx, ident->bases); |
| 114 | FREE_STRING(ctx, ident->dsc); |
| 115 | FREE_STRING(ctx, ident->ref); |
| 116 | FREE_ARRAY(ctx, ident->exts, lysp_ext_instance_free); |
| 117 | } |
| 118 | |
| 119 | static void |
| 120 | lysp_restr_free(struct ly_ctx *ctx, struct lysp_restr *restr) |
| 121 | { |
| 122 | FREE_STRING(ctx, restr->arg); |
| 123 | FREE_STRING(ctx, restr->emsg); |
| 124 | FREE_STRING(ctx, restr->eapptag); |
| 125 | FREE_STRING(ctx, restr->dsc); |
| 126 | FREE_STRING(ctx, restr->ref); |
| 127 | FREE_ARRAY(ctx, restr->exts, lysp_ext_instance_free); |
| 128 | } |
| 129 | |
| 130 | static void |
| 131 | lysp_type_enum_free(struct ly_ctx *ctx, struct lysp_type_enum *item) |
| 132 | { |
| 133 | FREE_STRING(ctx, item->name); |
| 134 | FREE_STRING(ctx, item->dsc); |
| 135 | FREE_STRING(ctx, item->ref); |
| 136 | FREE_STRINGS(ctx, item->iffeatures); |
| 137 | FREE_ARRAY(ctx, item->exts, lysp_ext_instance_free); |
| 138 | } |
| 139 | |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 140 | void lysc_type_free(struct ly_ctx *ctx, struct lysc_type *type); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 141 | static void |
| 142 | lysp_type_free(struct ly_ctx *ctx, struct lysp_type *type) |
| 143 | { |
| 144 | FREE_STRING(ctx, type->name); |
| 145 | FREE_MEMBER(ctx, type->range, lysp_restr_free); |
| 146 | FREE_MEMBER(ctx, type->length, lysp_restr_free); |
| 147 | FREE_ARRAY(ctx, type->patterns, lysp_restr_free); |
| 148 | FREE_ARRAY(ctx, type->enums, lysp_type_enum_free); |
| 149 | FREE_ARRAY(ctx, type->bits, lysp_type_enum_free); |
| 150 | FREE_STRING(ctx, type->path); |
| 151 | FREE_STRINGS(ctx, type->bases); |
| 152 | FREE_ARRAY(ctx, type->types, lysp_type_free); |
| 153 | FREE_ARRAY(ctx, type->exts, lysp_ext_instance_free); |
| 154 | if (type->compiled) { |
| 155 | lysc_type_free(ctx, type->compiled); |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | static void |
| 160 | lysp_tpdf_free(struct ly_ctx *ctx, struct lysp_tpdf *tpdf) |
| 161 | { |
| 162 | FREE_STRING(ctx, tpdf->name); |
| 163 | FREE_STRING(ctx, tpdf->units); |
| 164 | FREE_STRING(ctx, tpdf->dflt); |
| 165 | FREE_STRING(ctx, tpdf->dsc); |
| 166 | FREE_STRING(ctx, tpdf->ref); |
| 167 | FREE_ARRAY(ctx, tpdf->exts, lysp_ext_instance_free); |
| 168 | |
| 169 | lysp_type_free(ctx, &tpdf->type); |
| 170 | |
| 171 | } |
| 172 | |
| 173 | static void |
| 174 | lysp_action_inout_free(struct ly_ctx *ctx, struct lysp_action_inout *inout) |
| 175 | { |
| 176 | struct lysp_node *node, *next; |
| 177 | |
| 178 | FREE_ARRAY(ctx, inout->musts, lysp_restr_free); |
| 179 | FREE_ARRAY(ctx, inout->typedefs, lysp_tpdf_free); |
| 180 | FREE_ARRAY(ctx, inout->groupings, lysp_grp_free); |
| 181 | LY_LIST_FOR_SAFE(inout->data, next, node) { |
| 182 | lysp_node_free(ctx, node); |
| 183 | } |
| 184 | FREE_ARRAY(ctx, inout->exts, lysp_ext_instance_free); |
| 185 | |
| 186 | } |
| 187 | |
| 188 | static void |
| 189 | lysp_action_free(struct ly_ctx *ctx, struct lysp_action *action) |
| 190 | { |
| 191 | FREE_STRING(ctx, action->name); |
| 192 | FREE_STRING(ctx, action->dsc); |
| 193 | FREE_STRING(ctx, action->ref); |
| 194 | FREE_STRINGS(ctx, action->iffeatures); |
| 195 | FREE_ARRAY(ctx, action->typedefs, lysp_tpdf_free); |
| 196 | FREE_ARRAY(ctx, action->groupings, lysp_grp_free); |
| 197 | FREE_MEMBER(ctx, action->input, lysp_action_inout_free); |
| 198 | FREE_MEMBER(ctx, action->output, lysp_action_inout_free); |
| 199 | FREE_ARRAY(ctx, action->exts, lysp_ext_instance_free); |
| 200 | } |
| 201 | |
| 202 | static void |
| 203 | lysp_notif_free(struct ly_ctx *ctx, struct lysp_notif *notif) |
| 204 | { |
| 205 | struct lysp_node *node, *next; |
| 206 | |
| 207 | FREE_STRING(ctx, notif->name); |
| 208 | FREE_STRING(ctx, notif->dsc); |
| 209 | FREE_STRING(ctx, notif->ref); |
| 210 | FREE_STRINGS(ctx, notif->iffeatures); |
| 211 | FREE_ARRAY(ctx, notif->musts, lysp_restr_free); |
| 212 | FREE_ARRAY(ctx, notif->typedefs, lysp_tpdf_free); |
| 213 | FREE_ARRAY(ctx, notif->groupings, lysp_grp_free); |
| 214 | LY_LIST_FOR_SAFE(notif->data, next, node) { |
| 215 | lysp_node_free(ctx, node); |
| 216 | } |
| 217 | FREE_ARRAY(ctx, notif->exts, lysp_ext_instance_free); |
| 218 | } |
| 219 | |
| 220 | static void |
| 221 | lysp_grp_free(struct ly_ctx *ctx, struct lysp_grp *grp) |
| 222 | { |
| 223 | struct lysp_node *node, *next; |
| 224 | |
| 225 | FREE_STRING(ctx, grp->name); |
| 226 | FREE_STRING(ctx, grp->dsc); |
| 227 | FREE_STRING(ctx, grp->ref); |
| 228 | FREE_ARRAY(ctx, grp->typedefs, lysp_tpdf_free); |
| 229 | FREE_ARRAY(ctx, grp->groupings, lysp_grp_free); |
| 230 | LY_LIST_FOR_SAFE(grp->data, next, node) { |
| 231 | lysp_node_free(ctx, node); |
| 232 | } |
| 233 | FREE_ARRAY(ctx, grp->actions, lysp_action_free); |
| 234 | FREE_ARRAY(ctx, grp->notifs, lysp_notif_free); |
| 235 | FREE_ARRAY(ctx, grp->exts, lysp_ext_instance_free); |
| 236 | } |
| 237 | |
| 238 | static void |
| 239 | lysp_when_free(struct ly_ctx *ctx, struct lysp_when *when) |
| 240 | { |
| 241 | FREE_STRING(ctx, when->cond); |
| 242 | FREE_STRING(ctx, when->dsc); |
| 243 | FREE_STRING(ctx, when->ref); |
| 244 | FREE_ARRAY(ctx, when->exts, lysp_ext_instance_free); |
| 245 | } |
| 246 | |
| 247 | static void |
| 248 | lysp_augment_free(struct ly_ctx *ctx, struct lysp_augment *augment) |
| 249 | { |
| 250 | struct lysp_node *node, *next; |
| 251 | |
| 252 | FREE_STRING(ctx, augment->nodeid); |
| 253 | FREE_STRING(ctx, augment->dsc); |
| 254 | FREE_STRING(ctx, augment->ref); |
| 255 | FREE_MEMBER(ctx, augment->when, lysp_when_free); |
| 256 | FREE_STRINGS(ctx, augment->iffeatures); |
| 257 | LY_LIST_FOR_SAFE(augment->child, next, node) { |
| 258 | lysp_node_free(ctx, node); |
| 259 | } |
| 260 | FREE_ARRAY(ctx, augment->actions, lysp_action_free); |
| 261 | FREE_ARRAY(ctx, augment->notifs, lysp_notif_free); |
| 262 | FREE_ARRAY(ctx, augment->exts, lysp_ext_instance_free); |
| 263 | } |
| 264 | |
| 265 | static void |
| 266 | lysp_deviate_free(struct ly_ctx *ctx, struct lysp_deviate *d) |
| 267 | { |
| 268 | struct lysp_deviate_add *add = (struct lysp_deviate_add*)d; |
| 269 | struct lysp_deviate_rpl *rpl = (struct lysp_deviate_rpl*)d; |
| 270 | |
| 271 | FREE_ARRAY(ctx, d->exts, lysp_ext_instance_free); |
| 272 | switch(d->mod) { |
| 273 | case LYS_DEV_NOT_SUPPORTED: |
| 274 | /* nothing to do */ |
| 275 | break; |
| 276 | case LYS_DEV_ADD: |
| 277 | case LYS_DEV_DELETE: /* compatible for dynamically allocated data */ |
| 278 | FREE_STRING(ctx, add->units); |
| 279 | FREE_ARRAY(ctx, add->musts, lysp_restr_free); |
| 280 | FREE_STRINGS(ctx, add->uniques); |
| 281 | FREE_STRINGS(ctx, add->dflts); |
| 282 | break; |
| 283 | case LYS_DEV_REPLACE: |
| 284 | FREE_MEMBER(ctx, rpl->type, lysp_type_free); |
| 285 | FREE_STRING(ctx, rpl->units); |
| 286 | FREE_STRING(ctx, rpl->dflt); |
| 287 | break; |
| 288 | default: |
| 289 | LOGINT(ctx); |
| 290 | break; |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | static void |
| 295 | lysp_deviation_free(struct ly_ctx *ctx, struct lysp_deviation *dev) |
| 296 | { |
| 297 | struct lysp_deviate *next, *iter; |
| 298 | |
| 299 | FREE_STRING(ctx, dev->nodeid); |
| 300 | FREE_STRING(ctx, dev->dsc); |
| 301 | FREE_STRING(ctx, dev->ref); |
| 302 | LY_LIST_FOR_SAFE(dev->deviates, next, iter) { |
| 303 | lysp_deviate_free(ctx, iter); |
| 304 | free(iter); |
| 305 | } |
| 306 | FREE_ARRAY(ctx, dev->exts, lysp_ext_instance_free); |
| 307 | } |
| 308 | |
| 309 | static void |
| 310 | lysp_refine_free(struct ly_ctx *ctx, struct lysp_refine *ref) |
| 311 | { |
| 312 | FREE_STRING(ctx, ref->nodeid); |
| 313 | FREE_STRING(ctx, ref->dsc); |
| 314 | FREE_STRING(ctx, ref->ref); |
| 315 | FREE_STRINGS(ctx, ref->iffeatures); |
| 316 | FREE_ARRAY(ctx, ref->musts, lysp_restr_free); |
| 317 | FREE_STRING(ctx, ref->presence); |
| 318 | FREE_STRINGS(ctx, ref->dflts); |
| 319 | FREE_ARRAY(ctx, ref->exts, lysp_ext_instance_free); |
| 320 | } |
| 321 | |
| 322 | static void |
| 323 | lysp_node_free(struct ly_ctx *ctx, struct lysp_node *node) |
| 324 | { |
| 325 | struct lysp_node *child, *next; |
| 326 | |
| 327 | FREE_STRING(ctx, node->name); |
| 328 | FREE_STRING(ctx, node->dsc); |
| 329 | FREE_STRING(ctx, node->ref); |
| 330 | FREE_MEMBER(ctx, node->when, lysp_when_free); |
| 331 | FREE_STRINGS(ctx, node->iffeatures); |
| 332 | FREE_ARRAY(ctx, node->exts, lysp_ext_instance_free); |
| 333 | |
| 334 | switch(node->nodetype) { |
| 335 | case LYS_CONTAINER: |
| 336 | FREE_ARRAY(ctx, ((struct lysp_node_container*)node)->musts, lysp_restr_free); |
| 337 | FREE_STRING(ctx, ((struct lysp_node_container*)node)->presence); |
| 338 | FREE_ARRAY(ctx, ((struct lysp_node_container*)node)->typedefs, lysp_tpdf_free); |
| 339 | FREE_ARRAY(ctx, ((struct lysp_node_container*)node)->groupings, lysp_grp_free); |
| 340 | LY_LIST_FOR_SAFE(((struct lysp_node_container*)node)->child, next, child) { |
| 341 | lysp_node_free(ctx, child); |
| 342 | } |
| 343 | FREE_ARRAY(ctx, ((struct lysp_node_container*)node)->actions, lysp_action_free); |
| 344 | FREE_ARRAY(ctx, ((struct lysp_node_container*)node)->notifs, lysp_notif_free); |
| 345 | break; |
| 346 | case LYS_LEAF: |
| 347 | FREE_ARRAY(ctx, ((struct lysp_node_leaf*)node)->musts, lysp_restr_free); |
| 348 | lysp_type_free(ctx, &((struct lysp_node_leaf*)node)->type); |
| 349 | FREE_STRING(ctx, ((struct lysp_node_leaf*)node)->units); |
| 350 | FREE_STRING(ctx, ((struct lysp_node_leaf*)node)->dflt); |
| 351 | break; |
| 352 | case LYS_LEAFLIST: |
| 353 | FREE_ARRAY(ctx, ((struct lysp_node_leaflist*)node)->musts, lysp_restr_free); |
| 354 | lysp_type_free(ctx, &((struct lysp_node_leaflist*)node)->type); |
| 355 | FREE_STRING(ctx, ((struct lysp_node_leaflist*)node)->units); |
| 356 | FREE_STRINGS(ctx, ((struct lysp_node_leaflist*)node)->dflts); |
| 357 | break; |
| 358 | case LYS_LIST: |
| 359 | FREE_ARRAY(ctx, ((struct lysp_node_list*)node)->musts, lysp_restr_free); |
| 360 | FREE_STRING(ctx, ((struct lysp_node_list*)node)->key); |
| 361 | FREE_ARRAY(ctx, ((struct lysp_node_list*)node)->typedefs, lysp_tpdf_free); |
| 362 | FREE_ARRAY(ctx, ((struct lysp_node_list*)node)->groupings, lysp_grp_free); |
| 363 | LY_LIST_FOR_SAFE(((struct lysp_node_list*)node)->child, next, child) { |
| 364 | lysp_node_free(ctx, child); |
| 365 | } |
| 366 | FREE_ARRAY(ctx, ((struct lysp_node_list*)node)->actions, lysp_action_free); |
| 367 | FREE_ARRAY(ctx, ((struct lysp_node_list*)node)->notifs, lysp_notif_free); |
| 368 | FREE_STRINGS(ctx, ((struct lysp_node_list*)node)->uniques); |
| 369 | break; |
| 370 | case LYS_CHOICE: |
| 371 | LY_LIST_FOR_SAFE(((struct lysp_node_choice*)node)->child, next, child) { |
| 372 | lysp_node_free(ctx, child); |
| 373 | } |
| 374 | FREE_STRING(ctx, ((struct lysp_node_choice*)node)->dflt); |
| 375 | break; |
| 376 | case LYS_CASE: |
| 377 | LY_LIST_FOR_SAFE(((struct lysp_node_case*)node)->child, next, child) { |
| 378 | lysp_node_free(ctx, child); |
| 379 | } |
| 380 | break; |
| 381 | case LYS_ANYDATA: |
| 382 | case LYS_ANYXML: |
| 383 | FREE_ARRAY(ctx, ((struct lysp_node_anydata*)node)->musts, lysp_restr_free); |
| 384 | break; |
| 385 | case LYS_USES: |
| 386 | FREE_ARRAY(ctx, ((struct lysp_node_uses*)node)->refines, lysp_refine_free); |
| 387 | FREE_ARRAY(ctx, ((struct lysp_node_uses*)node)->augments, lysp_augment_free); |
| 388 | break; |
| 389 | default: |
| 390 | LOGINT(ctx); |
| 391 | } |
| 392 | |
| 393 | free(node); |
| 394 | } |
| 395 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 396 | void |
| 397 | lysp_submodule_free(struct ly_ctx *ctx, struct lysp_submodule *submod) |
| 398 | { |
| 399 | struct lysp_node *node, *next; |
| 400 | |
Radek Krejci | 40544fa | 2019-01-11 09:38:37 +0100 | [diff] [blame] | 401 | if (!submod) { |
| 402 | return; |
| 403 | } |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 404 | |
| 405 | FREE_ARRAY(ctx, submod->imports, lysp_import_free); |
| 406 | FREE_ARRAY(ctx, submod->includes, lysp_include_free); |
| 407 | |
| 408 | FREE_ARRAY(ctx, submod->revs, lysp_revision_free); |
| 409 | FREE_ARRAY(ctx, submod->extensions, lysp_ext_free); |
| 410 | FREE_ARRAY(ctx, submod->features, lysp_feature_free); |
| 411 | FREE_ARRAY(ctx, submod->identities, lysp_ident_free); |
| 412 | FREE_ARRAY(ctx, submod->typedefs, lysp_tpdf_free); |
| 413 | FREE_ARRAY(ctx, submod->groupings, lysp_grp_free); |
| 414 | LY_LIST_FOR_SAFE(submod->data, next, node) { |
| 415 | lysp_node_free(ctx, node); |
| 416 | } |
| 417 | FREE_ARRAY(ctx, submod->augments, lysp_augment_free); |
| 418 | FREE_ARRAY(ctx, submod->rpcs, lysp_action_free); |
| 419 | FREE_ARRAY(ctx, submod->notifs, lysp_notif_free); |
| 420 | FREE_ARRAY(ctx, submod->deviations, lysp_deviation_free); |
| 421 | FREE_ARRAY(ctx, submod->exts, lysp_ext_instance_free); |
| 422 | |
| 423 | FREE_STRING(ctx, submod->belongsto); |
| 424 | FREE_STRING(ctx, submod->name); |
| 425 | FREE_STRING(ctx, submod->filepath); |
| 426 | FREE_STRING(ctx, submod->prefix); |
| 427 | FREE_STRING(ctx, submod->org); |
| 428 | FREE_STRING(ctx, submod->contact); |
| 429 | FREE_STRING(ctx, submod->dsc); |
| 430 | FREE_STRING(ctx, submod->ref); |
| 431 | |
| 432 | free(submod); |
| 433 | } |
| 434 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 435 | API void |
| 436 | lysp_module_free(struct lysp_module *module) |
| 437 | { |
| 438 | struct ly_ctx *ctx; |
| 439 | struct lysp_node *node, *next; |
| 440 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 441 | if (!module) { |
| 442 | return; |
| 443 | } |
| 444 | ctx = module->mod->ctx; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 445 | |
| 446 | FREE_ARRAY(ctx, module->imports, lysp_import_free); |
| 447 | FREE_ARRAY(ctx, module->includes, lysp_include_free); |
| 448 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 449 | FREE_ARRAY(ctx, module->revs, lysp_revision_free); |
| 450 | FREE_ARRAY(ctx, module->extensions, lysp_ext_free); |
| 451 | FREE_ARRAY(ctx, module->features, lysp_feature_free); |
| 452 | FREE_ARRAY(ctx, module->identities, lysp_ident_free); |
| 453 | FREE_ARRAY(ctx, module->typedefs, lysp_tpdf_free); |
| 454 | FREE_ARRAY(ctx, module->groupings, lysp_grp_free); |
| 455 | LY_LIST_FOR_SAFE(module->data, next, node) { |
| 456 | lysp_node_free(ctx, node); |
| 457 | } |
| 458 | FREE_ARRAY(ctx, module->augments, lysp_augment_free); |
| 459 | FREE_ARRAY(ctx, module->rpcs, lysp_action_free); |
| 460 | FREE_ARRAY(ctx, module->notifs, lysp_notif_free); |
| 461 | FREE_ARRAY(ctx, module->deviations, lysp_deviation_free); |
| 462 | FREE_ARRAY(ctx, module->exts, lysp_ext_instance_free); |
| 463 | |
| 464 | free(module); |
| 465 | } |
| 466 | |
| 467 | static void |
| 468 | lysc_ext_instance_free(struct ly_ctx *ctx, struct lysc_ext_instance *ext) |
| 469 | { |
| 470 | FREE_STRING(ctx, ext->argument); |
| 471 | FREE_ARRAY(ctx, ext->exts, lysc_ext_instance_free); |
| 472 | } |
| 473 | |
| 474 | static void |
| 475 | lysc_iffeature_free(struct ly_ctx *UNUSED(ctx), struct lysc_iffeature *iff) |
| 476 | { |
| 477 | LY_ARRAY_FREE(iff->features); |
| 478 | free(iff->expr); |
| 479 | } |
| 480 | |
| 481 | static void |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 482 | lysc_when_free(struct ly_ctx *ctx, struct lysc_when *w) |
| 483 | { |
| 484 | lyxp_expr_free(ctx, w->cond); |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 485 | FREE_STRING(ctx, w->dsc); |
| 486 | FREE_STRING(ctx, w->ref); |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 487 | FREE_ARRAY(ctx, w->exts, lysc_ext_instance_free); |
| 488 | } |
| 489 | |
| 490 | static void |
| 491 | lysc_must_free(struct ly_ctx *ctx, struct lysc_must *must) |
| 492 | { |
| 493 | lyxp_expr_free(ctx, must->cond); |
| 494 | FREE_STRING(ctx, must->emsg); |
| 495 | FREE_STRING(ctx, must->eapptag); |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 496 | FREE_STRING(ctx, must->dsc); |
| 497 | FREE_STRING(ctx, must->ref); |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 498 | FREE_ARRAY(ctx, must->exts, lysc_ext_instance_free); |
| 499 | } |
| 500 | |
| 501 | static void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 502 | lysc_import_free(struct ly_ctx *ctx, struct lysc_import *import) |
| 503 | { |
| 504 | /* imported module is freed directly from the context's list */ |
| 505 | FREE_STRING(ctx, import->prefix); |
| 506 | FREE_ARRAY(ctx, import->exts, lysc_ext_instance_free); |
| 507 | } |
| 508 | |
| 509 | static void |
| 510 | lysc_ident_free(struct ly_ctx *ctx, struct lysc_ident *ident) |
| 511 | { |
| 512 | FREE_STRING(ctx, ident->name); |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 513 | FREE_STRING(ctx, ident->dsc); |
| 514 | FREE_STRING(ctx, ident->ref); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 515 | FREE_ARRAY(ctx, ident->iffeatures, lysc_iffeature_free); |
| 516 | LY_ARRAY_FREE(ident->derived); |
| 517 | FREE_ARRAY(ctx, ident->exts, lysc_ext_instance_free); |
| 518 | } |
| 519 | |
| 520 | static void |
| 521 | lysc_feature_free(struct ly_ctx *ctx, struct lysc_feature *feat) |
| 522 | { |
| 523 | FREE_STRING(ctx, feat->name); |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 524 | FREE_STRING(ctx, feat->dsc); |
| 525 | FREE_STRING(ctx, feat->ref); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 526 | FREE_ARRAY(ctx, feat->iffeatures, lysc_iffeature_free); |
| 527 | LY_ARRAY_FREE(feat->depfeatures); |
| 528 | FREE_ARRAY(ctx, feat->exts, lysc_ext_instance_free); |
| 529 | } |
| 530 | |
| 531 | static void |
| 532 | lysc_range_free(struct ly_ctx *ctx, struct lysc_range *range) |
| 533 | { |
| 534 | LY_ARRAY_FREE(range->parts); |
| 535 | FREE_STRING(ctx, range->eapptag); |
| 536 | FREE_STRING(ctx, range->emsg); |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 537 | FREE_STRING(ctx, range->dsc); |
| 538 | FREE_STRING(ctx, range->ref); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 539 | FREE_ARRAY(ctx, range->exts, lysc_ext_instance_free); |
| 540 | } |
| 541 | |
| 542 | static void |
| 543 | lysc_pattern_free(struct ly_ctx *ctx, struct lysc_pattern **pattern) |
| 544 | { |
| 545 | if (--(*pattern)->refcount) { |
| 546 | return; |
| 547 | } |
| 548 | pcre_free((*pattern)->expr); |
| 549 | pcre_free_study((*pattern)->expr_extra); |
| 550 | FREE_STRING(ctx, (*pattern)->eapptag); |
| 551 | FREE_STRING(ctx, (*pattern)->emsg); |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 552 | FREE_STRING(ctx, (*pattern)->dsc); |
| 553 | FREE_STRING(ctx, (*pattern)->ref); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 554 | FREE_ARRAY(ctx, (*pattern)->exts, lysc_ext_instance_free); |
| 555 | free(*pattern); |
| 556 | } |
| 557 | |
| 558 | static void |
| 559 | lysc_enum_item_free(struct ly_ctx *ctx, struct lysc_type_enum_item *item) |
| 560 | { |
| 561 | FREE_STRING(ctx, item->name); |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 562 | FREE_STRING(ctx, item->dsc); |
| 563 | FREE_STRING(ctx, item->ref); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 564 | FREE_ARRAY(ctx, item->iffeatures, lysc_iffeature_free); |
| 565 | FREE_ARRAY(ctx, item->exts, lysc_ext_instance_free); |
| 566 | } |
| 567 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 568 | static void |
| 569 | lysc_type2_free(struct ly_ctx *ctx, struct lysc_type **type) |
| 570 | { |
| 571 | lysc_type_free(ctx, *type); |
| 572 | } |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 573 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 574 | lysc_type_free(struct ly_ctx *ctx, struct lysc_type *type) |
| 575 | { |
| 576 | if (--type->refcount) { |
| 577 | return; |
| 578 | } |
| 579 | switch(type->basetype) { |
| 580 | case LY_TYPE_BINARY: |
| 581 | FREE_MEMBER(ctx, ((struct lysc_type_bin*)type)->length, lysc_range_free); |
| 582 | break; |
| 583 | case LY_TYPE_BITS: |
| 584 | FREE_ARRAY(ctx, (struct lysc_type_enum_item*)((struct lysc_type_bits*)type)->bits, lysc_enum_item_free); |
| 585 | break; |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 586 | case LY_TYPE_DEC64: |
| 587 | FREE_MEMBER(ctx, ((struct lysc_type_dec*)type)->range, lysc_range_free); |
| 588 | break; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 589 | case LY_TYPE_STRING: |
| 590 | FREE_MEMBER(ctx, ((struct lysc_type_str*)type)->length, lysc_range_free); |
| 591 | FREE_ARRAY(ctx, ((struct lysc_type_str*)type)->patterns, lysc_pattern_free); |
| 592 | break; |
| 593 | case LY_TYPE_ENUM: |
| 594 | FREE_ARRAY(ctx, ((struct lysc_type_enum*)type)->enums, lysc_enum_item_free); |
| 595 | break; |
| 596 | case LY_TYPE_INT8: |
| 597 | case LY_TYPE_UINT8: |
| 598 | case LY_TYPE_INT16: |
| 599 | case LY_TYPE_UINT16: |
| 600 | case LY_TYPE_INT32: |
| 601 | case LY_TYPE_UINT32: |
| 602 | case LY_TYPE_INT64: |
| 603 | case LY_TYPE_UINT64: |
| 604 | FREE_MEMBER(ctx, ((struct lysc_type_num*)type)->range, lysc_range_free); |
| 605 | break; |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 606 | case LY_TYPE_IDENT: |
| 607 | LY_ARRAY_FREE(((struct lysc_type_identityref*)type)->bases); |
| 608 | break; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 609 | case LY_TYPE_UNION: |
| 610 | FREE_ARRAY(ctx, ((struct lysc_type_union*)type)->types, lysc_type2_free); |
| 611 | break; |
| 612 | case LY_TYPE_LEAFREF: |
| 613 | FREE_STRING(ctx, ((struct lysc_type_leafref*)type)->path); |
| 614 | break; |
Radek Krejci | 16c0f82 | 2018-11-16 10:46:10 +0100 | [diff] [blame] | 615 | case LY_TYPE_INST: |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 616 | case LY_TYPE_BOOL: |
| 617 | case LY_TYPE_EMPTY: |
Radek Krejci | 4369923 | 2018-11-23 14:59:46 +0100 | [diff] [blame] | 618 | case LY_TYPE_UNKNOWN: |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 619 | /* nothing to do */ |
| 620 | break; |
| 621 | } |
| 622 | FREE_ARRAY(ctx, type->exts, lysc_ext_instance_free); |
Radek Krejci | 01342af | 2019-01-03 15:18:08 +0100 | [diff] [blame] | 623 | FREE_STRING(ctx, type->dflt); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 624 | |
| 625 | free(type); |
| 626 | } |
| 627 | |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 628 | static void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 629 | lysc_node_container_free(struct ly_ctx *ctx, struct lysc_node_container *node) |
| 630 | { |
| 631 | struct lysc_node *child, *child_next; |
| 632 | |
| 633 | LY_LIST_FOR_SAFE(node->child, child_next, child) { |
| 634 | lysc_node_free(ctx, child); |
| 635 | } |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 636 | FREE_ARRAY(ctx, node->musts, lysc_must_free); |
| 637 | |
| 638 | /* TODO actions, notifs */ |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 639 | } |
| 640 | |
| 641 | static void |
| 642 | lysc_node_leaf_free(struct ly_ctx *ctx, struct lysc_node_leaf *node) |
| 643 | { |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 644 | FREE_ARRAY(ctx, node->musts, lysc_must_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 645 | if (node->type) { |
| 646 | lysc_type_free(ctx, node->type); |
| 647 | } |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 648 | FREE_STRING(ctx, node->units); |
| 649 | FREE_STRING(ctx, node->dflt); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 650 | } |
| 651 | |
Radek Krejci | 42452ac | 2018-11-28 17:09:52 +0100 | [diff] [blame] | 652 | static void |
| 653 | lysc_node_leaflist_free(struct ly_ctx *ctx, struct lysc_node_leaflist *node) |
| 654 | { |
| 655 | unsigned int u; |
| 656 | |
Radek Krejci | 42452ac | 2018-11-28 17:09:52 +0100 | [diff] [blame] | 657 | FREE_ARRAY(ctx, node->musts, lysc_must_free); |
| 658 | if (node->type) { |
| 659 | lysc_type_free(ctx, node->type); |
| 660 | } |
| 661 | FREE_STRING(ctx, node->units); |
| 662 | LY_ARRAY_FOR(node->dflts, u) { |
| 663 | lydict_remove(ctx, node->dflts[u]); |
| 664 | } |
| 665 | LY_ARRAY_FREE(node->dflts); |
| 666 | } |
| 667 | |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 668 | static void |
| 669 | lysc_node_list_free(struct ly_ctx *ctx, struct lysc_node_list *node) |
| 670 | { |
| 671 | unsigned int u; |
| 672 | struct lysc_node *child, *child_next; |
| 673 | |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 674 | LY_LIST_FOR_SAFE(node->child, child_next, child) { |
| 675 | lysc_node_free(ctx, child); |
| 676 | } |
| 677 | FREE_ARRAY(ctx, node->musts, lysc_must_free); |
| 678 | |
| 679 | LY_ARRAY_FREE(node->keys); |
| 680 | LY_ARRAY_FOR(node->uniques, u) { |
| 681 | LY_ARRAY_FREE(node->uniques[u]); |
| 682 | } |
| 683 | LY_ARRAY_FREE(node->uniques); |
| 684 | |
| 685 | /* TODO actions, notifs */ |
| 686 | } |
| 687 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 688 | static void |
| 689 | lysc_node_choice_free(struct ly_ctx *ctx, struct lysc_node_choice *node) |
| 690 | { |
| 691 | struct lysc_node *child, *child_next; |
| 692 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 693 | if (node->cases) { |
| 694 | LY_LIST_FOR_SAFE(node->cases->child, child_next, child) { |
| 695 | lysc_node_free(ctx, child); |
| 696 | } |
| 697 | LY_LIST_FOR_SAFE((struct lysc_node*)node->cases, child_next, child) { |
| 698 | lysc_node_free(ctx, child); |
| 699 | } |
| 700 | } |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 701 | } |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 702 | |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 703 | static void |
| 704 | lysc_node_anydata_free(struct ly_ctx *ctx, struct lysc_node_anydata *node) |
| 705 | { |
| 706 | FREE_ARRAY(ctx, node->musts, lysc_must_free); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 707 | } |
| 708 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 709 | void |
| 710 | lysc_node_free(struct ly_ctx *ctx, struct lysc_node *node) |
| 711 | { |
| 712 | /* common part */ |
| 713 | FREE_STRING(ctx, node->name); |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 714 | FREE_STRING(ctx, node->dsc); |
| 715 | FREE_STRING(ctx, node->ref); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 716 | |
| 717 | /* nodetype-specific part */ |
| 718 | switch(node->nodetype) { |
| 719 | case LYS_CONTAINER: |
| 720 | lysc_node_container_free(ctx, (struct lysc_node_container*)node); |
| 721 | break; |
| 722 | case LYS_LEAF: |
| 723 | lysc_node_leaf_free(ctx, (struct lysc_node_leaf*)node); |
| 724 | break; |
Radek Krejci | 42452ac | 2018-11-28 17:09:52 +0100 | [diff] [blame] | 725 | case LYS_LEAFLIST: |
| 726 | lysc_node_leaflist_free(ctx, (struct lysc_node_leaflist*)node); |
| 727 | break; |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 728 | case LYS_LIST: |
| 729 | lysc_node_list_free(ctx, (struct lysc_node_list*)node); |
| 730 | break; |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 731 | case LYS_CHOICE: |
| 732 | lysc_node_choice_free(ctx, (struct lysc_node_choice*)node); |
| 733 | break; |
| 734 | case LYS_CASE: |
| 735 | /* nothing specific */ |
| 736 | break; |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 737 | case LYS_ANYDATA: |
| 738 | case LYS_ANYXML: |
| 739 | lysc_node_anydata_free(ctx, (struct lysc_node_anydata*)node); |
| 740 | break; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 741 | default: |
| 742 | LOGINT(ctx); |
| 743 | } |
| 744 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 745 | FREE_MEMBER(ctx, node->when, lysc_when_free); |
| 746 | FREE_ARRAY(ctx, node->iffeatures, lysc_iffeature_free); |
| 747 | FREE_ARRAY(ctx, node->exts, lysc_ext_instance_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 748 | free(node); |
| 749 | } |
| 750 | |
| 751 | static void |
| 752 | lysc_module_free_(struct lysc_module *module) |
| 753 | { |
| 754 | struct ly_ctx *ctx; |
| 755 | struct lysc_node *node, *node_next; |
| 756 | |
| 757 | LY_CHECK_ARG_RET(NULL, module,); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 758 | ctx = module->mod->ctx; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 759 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 760 | FREE_STRING(ctx, module->revision); |
| 761 | |
| 762 | FREE_ARRAY(ctx, module->imports, lysc_import_free); |
| 763 | FREE_ARRAY(ctx, module->features, lysc_feature_free); |
| 764 | FREE_ARRAY(ctx, module->identities, lysc_ident_free); |
| 765 | |
| 766 | LY_LIST_FOR_SAFE(module->data, node_next, node) { |
| 767 | lysc_node_free(ctx, node); |
| 768 | } |
| 769 | |
| 770 | FREE_ARRAY(ctx, module->exts, lysc_ext_instance_free); |
| 771 | |
| 772 | free(module); |
| 773 | } |
| 774 | |
| 775 | void |
| 776 | lysc_module_free(struct lysc_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv)) |
| 777 | { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 778 | if (module) { |
| 779 | lysc_module_free_(module); |
| 780 | } |
| 781 | } |
| 782 | |
| 783 | void |
| 784 | lys_module_free(struct lys_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv)) |
| 785 | { |
| 786 | if (!module) { |
| 787 | return; |
| 788 | } |
| 789 | |
| 790 | lysc_module_free(module->compiled, private_destructor); |
| 791 | lysp_module_free(module->parsed); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 792 | |
| 793 | FREE_STRING(module->ctx, module->name); |
| 794 | FREE_STRING(module->ctx, module->ns); |
| 795 | FREE_STRING(module->ctx, module->prefix); |
| 796 | FREE_STRING(module->ctx, module->filepath); |
| 797 | FREE_STRING(module->ctx, module->org); |
| 798 | FREE_STRING(module->ctx, module->contact); |
| 799 | FREE_STRING(module->ctx, module->dsc); |
| 800 | FREE_STRING(module->ctx, module->ref); |
| 801 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 802 | free(module); |
| 803 | } |