diff options
| author | Russ White <russ@riw.us> | 2023-05-02 11:33:38 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-02 11:33:38 -0400 |
| commit | d0053da26b49166353c5f48c11fb11f6bea691d0 (patch) | |
| tree | 5eed5e43a11b695373a1951869489c05a63c27c0 /lib/flex_algo.h | |
| parent | da57946b0e9fdb24133860df931a53dbd6646f84 (diff) | |
| parent | 771d544a5b45f8509761ff78c85020715579206d (diff) | |
Merge pull request #13376 from louis-6wind/fix-flex-algo-mem-leak
isisd, lib: fix flex-algo memory leak
Diffstat (limited to 'lib/flex_algo.h')
| -rw-r--r-- | lib/flex_algo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/flex_algo.h b/lib/flex_algo.h index 81a0af85b8..e617e7cae8 100644 --- a/lib/flex_algo.h +++ b/lib/flex_algo.h @@ -112,6 +112,7 @@ struct flex_algos { */ struct flex_algos *flex_algos_alloc(flex_algo_allocator_t allocator, flex_algo_releaser_t releaser); +void flex_algos_free(struct flex_algos *flex_algos); struct flex_algo *flex_algo_alloc(struct flex_algos *flex_algos, uint8_t algorithm, void *arg); struct flex_algo *flex_algo_lookup(struct flex_algos *flex_algos, |
