Merge branch 'wip/hadess/downgrade-assert' into 'master'
lib: Downgrade BUG* assertions to work-around crashes Closes #77 See merge request libfprint/libfprint!6
This commit is contained in:
commit
b9e5b3a55c
1 changed files with 8 additions and 2 deletions
|
@ -44,8 +44,14 @@
|
||||||
#define fp_warn g_warning
|
#define fp_warn g_warning
|
||||||
#define fp_err g_error
|
#define fp_err g_error
|
||||||
|
|
||||||
#define BUG_ON(condition) g_assert(!(condition))
|
#define BUG_ON(condition) G_STMT_START \
|
||||||
#define BUG() g_assert_not_reached()
|
if (condition) { \
|
||||||
|
char *s; \
|
||||||
|
s = g_strconcat ("BUG: (", #condition, ")", NULL); \
|
||||||
|
g_warning ("%s: %s() %s:%d", s, G_STRFUNC, __FILE__, __LINE__); \
|
||||||
|
g_free (s); \
|
||||||
|
} G_STMT_END
|
||||||
|
#define BUG() BUG_ON(1)
|
||||||
|
|
||||||
enum fp_dev_state {
|
enum fp_dev_state {
|
||||||
DEV_STATE_INITIAL = 0,
|
DEV_STATE_INITIAL = 0,
|
||||||
|
|
Loading…
Reference in a new issue