]> git.puffer.fish Git - matthieu/frr.git/commit
lib: remove nb/yang memory cleanup when daemonizing
authorIgor Ryzhov <iryzhov@nfware.com>
Sun, 17 Mar 2024 20:44:28 +0000 (22:44 +0200)
committerIgor Ryzhov <iryzhov@nfware.com>
Sun, 17 Mar 2024 20:44:28 +0000 (22:44 +0200)
commita564710c34bdae8a0f0630f50b5718f0757d8edc
tree8bd69deb558b76472dc2311a129294d6d2a299db
parent387a035b660b88a4899cba0d0b00face8c4946ca
lib: remove nb/yang memory cleanup when daemonizing

We're not calling any other termination functions to free allocated
memory when daemonizing except these two. There's no reason for such an
exception, and because of these calls we have the following libyang
warnings every time FRR is started:
```
MGMTD: libyang: String "15" not freed from the dictionary, refcount 2
MGMTD: libyang: String "200" not freed from the dictionary, refcount 2
MGMTD: libyang: String "mrib-then-urib" not freed from the dictionary, refcount 2
MGMTD: libyang: String "1000" not freed from the dictionary, refcount 2
MGMTD: libyang: String "10" not freed from the dictionary, refcount 2
MGMTD: libyang: String "5" not freed from the dictionary, refcount 2
```

Remove these calls to get rid of the unnecessary warnings.

Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
lib/libfrr.c