diff options
author | Maria Matejka <mq@ucw.cz> | 2022-04-10 18:55:15 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-05-04 15:37:41 +0200 |
commit | f2f3163f6c3fba7f9ef03640d7b2f6323873d2cc (patch) | |
tree | d0f3129250e783d347c63f649b02880abf569c1d /lib | |
parent | de86040b2cf4ec9bfbb64f0e208a19d4d7e51adc (diff) |
Filters always allocate from tmp_linpool
Diffstat (limited to 'lib')
-rw-r--r-- | lib/attrs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/attrs.h b/lib/attrs.h index fcb70230..d2638f3f 100644 --- a/lib/attrs.h +++ b/lib/attrs.h @@ -37,6 +37,8 @@ lp_store_adata(struct linpool *pool, const void *buf, uint len) return ad; } +#define tmp_store_adata(buf, len) lp_store_adata(tmp_linpool, buf, len) + static inline int adata_same(const struct adata *a, const struct adata *b) { return (a->length == b->length && !memcmp(a->data, b->data, a->length)); } |