Daniel Black

Results 105 issues of Daniel Black

- [x] *The Jira issue number for this PR is: MDEV-37615* ## Description Clang static analysis tools like Infer, are written around static analysis and not undefined behaviour detection at...

MariaDB Foundation

- [x] *The Jira issue number for this PR is: MDEV-37613* ## Description BINCOL::SetEndian can be replaced by using the preprocessor macro WORDS_BIGENDIAN to determine the endian. After that the...

MariaDB Foundation

- [x] *The Jira issue number for this PR is: MDEV-31751* ## Description `SET @@tx_isolation=X` behaves like `SET TRANSACATION ISOLATION LEVEL X` instead of `SET SESSSION tx_isolation=X` But that doesn't...

MariaDB Foundation

The use of a variable argument list to allocate a memory block once for its argument pointers at once isn't traced to the returning function. x.c: ```c #include #include void...

c

In the case below we never dereference mysql_default when it is null so the infer warning is a false positive. x.c: ```c #include #include static char *mysql_default = 0; #define...

c