Skip to content

Commit 9db274d

Browse files
committed
updated list of libraries, fixed SA issue in DM
1 parent 1c51cf1 commit 9db274d

File tree

2 files changed

+20
-10
lines changed

2 files changed

+20
-10
lines changed

NOTICE

+19-9
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,32 @@
1-
Sysrepo
1+
sysrepo - YANG-based datastore for Unix/Linux applications (http://www.sysrepo.org)
22
Copyright 2015 Copyright 2015 Cisco Systems, Inc.
33

4-
This product uses several libraries developed by third-parties:
4+
This product uses several dynamically-linked open-source libraries developed
5+
by third-parties:
56

6-
libyang - YANG data modeling language library, open source software
7+
libyang - YANG data modeling language library, open-source software
78
developed by CESNET, z.s.p.o., available from:
89
https://github.com/CESNET/libyang/
910

10-
Google protocol buffers - language-neutral, platform-neutral, extensible
11-
mechanism for serializing structured data, open source software developed
11+
Google Protocol Buffers - language-neutral, platform-neutral, extensible
12+
mechanism for serializing structured data, open-source software developed
1213
by Google Inc., available from:
1314
https://github.com/google/protobuf
1415

15-
protobuf-c - Protocol Buffers implementation in C, open source software
16+
protobuf-c - Protocol Buffers implementation in C, open-source software
1617
developed by Dave Benson and other protobuf-c authors, available from:
1718
https://github.com/protobuf-c/protobuf-c/
18-
19-
CMocka - An unit testing framework for C with support for mock objects,
20-
open source software developed by Andreas Schneider and Jakub Hrozek,
19+
20+
libavl - Library with binary search tree and balanced tree library routines,
21+
developed by Ben Pfaff, provided under GNU Lesser General Public License,
22+
available from:
23+
http://adtinfo.org/
24+
25+
libev - Library that provides high-performance event loop, open-source software
26+
developed by by Marc Lehmann and Emanuele Giaquinta, available from:
27+
http://software.schmorp.de/pkg/libev.html
28+
29+
CMocka - An unit-testing framework for C with support for mock objects,
30+
open-source software developed by Andreas Schneider and Jakub Hrozek,
2131
available from:
2232
git://git.cryptomilk.org/projects/cmocka.git

src/data_manager.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -388,9 +388,9 @@ dm_cleanup(dm_ctx_t *dm_ctx)
388388
free(dm_ctx->search_dir);
389389
avl_free_tree(dm_ctx->module_avl);
390390
ly_ctx_destroy(dm_ctx->ly_ctx);
391-
free(dm_ctx);
392391
pthread_rwlock_destroy(&dm_ctx->avl_lock);
393392
pthread_rwlock_destroy(&dm_ctx->lyctx_lock);
393+
free(dm_ctx);
394394
return SR_ERR_OK;
395395
}
396396

0 commit comments

Comments
 (0)