diff options
author | David Timber <mieabby@gmail.com> | 2020-09-15 20:04:13 +0930 |
---|---|---|
committer | David Timber <mieabby@gmail.com> | 2020-09-15 20:04:13 +0930 |
commit | ca0c9a60b0f7dc823ff01f77fc00458ab4a13532 (patch) | |
tree | f361382866540b5666a74084133cd2fb51f16e71 /src/htbt.h | |
parent | d06a39d44741355e96ee96d8f760b995f35abaed (diff) |
* Code consistency - take *_param_t as pointer
* Fix *_param_t leak and memory error
Diffstat (limited to 'src/htbt.h')
-rw-r--r-- | src/htbt.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ struct prne_htbt_param { }; -prne_htbt_t *prne_alloc_htbt (prne_worker_t *w, const prne_htbt_param_t param); +prne_htbt_t *prne_alloc_htbt (prne_worker_t *w, const prne_htbt_param_t *param); void prne_htbt_init_param (prne_htbt_param_t *p); void prne_htbt_free_param (prne_htbt_param_t *p); |