RAII: Change order or variables in clang version

This prevents use-after-scope issues when unwinding the stack,
which happens in reverse order. The varname variable needs to
remain alive for the destruction to be able to access it.
Issue was found using clang + address-sanitizer.

ASTERISK-28232 #close

Change-Id: I00811c34ae910836a5fb6d22304528aef92624db
This commit is contained in:
Diederik de Groot 2019-01-05 18:14:26 +01:00
parent 701cd2ee58
commit d2c182b6ab
1 changed files with 4 additions and 4 deletions

View File

@ -786,10 +786,10 @@ char *ast_utils_which(const char *binary, char *fullpath, size_t fullpath_size);
typedef void (^_raii_cleanup_block_t)(void);
static inline void _raii_cleanup_block(_raii_cleanup_block_t *b) { (*b)(); }
#define RAII_VAR(vartype, varname, initval, dtor) \
_raii_cleanup_block_t _raii_cleanup_ ## varname __attribute__((cleanup(_raii_cleanup_block),unused)) = NULL; \
__block vartype varname = initval; \
_raii_cleanup_ ## varname = ^{ {(void)dtor(varname);} }
#define RAII_VAR(vartype, varname, initval, dtor) \
__block vartype varname = initval; \
_raii_cleanup_block_t _raii_cleanup_ ## varname __attribute__((cleanup(_raii_cleanup_block),unused)) = \
^{ {(void)dtor(varname);} };
#elif defined(__GNUC__)