-
Notifications
You must be signed in to change notification settings - Fork 35
Open
Description
Line 212 in 3abeaaf
| ERR_FAIL_COND_V_MSG(res->data == NULL, RES(), bin->error); |
Yes. There is some bug:
#if defined(ERR_FAIL_COND_V_MSG)
ERR_FAIL_COND_V_MSG(res->data == NULL, RES(), bin->error);
#else
ERR_EXPLAIN(bin->error);
ERR_FAIL_COND_V(res->data == NULL, RES());
ERR_FAIL_COND_V_MSG(res->data == NULL, RES(), bin->error); // AAAA WATAFK
#endifIn code, we check the ERR_FAIL_COND_V_MSG is defined, but if it isn't, we whatever use it
Metadata
Metadata
Assignees
Labels
No labels