bandb/bandb: functions that call exit(3) should be marked noreturn, avoid sign overflow in integer function argument
This commit is contained in:
parent
2e032bf638
commit
e44fe481e3
1 changed files with 7 additions and 1 deletions
|
@ -236,6 +236,9 @@ parse_request(rb_helper *helper)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void
|
||||||
|
error_cb(rb_helper *helper) __attribute__((noreturn));
|
||||||
|
|
||||||
static void
|
static void
|
||||||
error_cb(rb_helper *helper)
|
error_cb(rb_helper *helper)
|
||||||
{
|
{
|
||||||
|
@ -282,13 +285,16 @@ setup_signals(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void
|
||||||
|
db_error_cb(const char *errstr) __attribute__((noreturn));
|
||||||
|
|
||||||
static void
|
static void
|
||||||
db_error_cb(const char *errstr)
|
db_error_cb(const char *errstr)
|
||||||
{
|
{
|
||||||
char buf[256];
|
char buf[256];
|
||||||
snprintf(buf, sizeof(buf), "! :%s", errstr);
|
snprintf(buf, sizeof(buf), "! :%s", errstr);
|
||||||
rb_helper_write(bandb_helper, "%s", buf);
|
rb_helper_write(bandb_helper, "%s", buf);
|
||||||
rb_sleep(2 << 30, 0);
|
rb_sleep(1 << 30, 0);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue