s3/mdssvc: add option "elasticsearch:force_substring_search = yes | no" (default...
[samba.git] / lib / util / talloc_keep_secret.c
blobeb5bb80ff37fc330a965909526ea7c3c5e61ee69
1 /*
2 * Copyright (c) 2019 Andreas Schneider <asn@samba.org>
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #include "replace.h"
19 #include <talloc.h>
20 #include "lib/util/fault.h"
21 #include "talloc_keep_secret.h"
23 static int talloc_keep_secret_destructor(void *ptr)
25 size_t size = talloc_get_size(ptr);
27 if (unlikely(size == 0)) {
28 return 0;
31 BURN_PTR_SIZE(ptr, size);
33 return 0;
36 void _talloc_keep_secret(void *ptr, const char *name)
38 size_t size;
40 if (unlikely(ptr == NULL)) {
41 #ifdef DEVELOPER
42 smb_panic("Invalid talloc pointer");
43 #endif
44 return;
47 size = talloc_get_size(ptr);
48 if (unlikely(size == 0)) {
49 return;
52 talloc_set_name_const(ptr, name);
53 talloc_set_destructor(ptr, talloc_keep_secret_destructor);