mirror of
https://github.com/swaywm/sway.git
synced 2024-11-13 05:54:11 +01:00
Fix off-by-one bug in log functions
This commit is contained in:
parent
d3f3619c3a
commit
a1bb58017b
@ -68,7 +68,7 @@ void _sway_log(log_importance_t verbosity, const char* format, ...) {
|
|||||||
#endif
|
#endif
|
||||||
if (verbosity <= v) {
|
if (verbosity <= v) {
|
||||||
unsigned int c = verbosity;
|
unsigned int c = verbosity;
|
||||||
if (c > sizeof(verbosity_colors) / sizeof(char *)) {
|
if (c > sizeof(verbosity_colors) / sizeof(char *) - 1) {
|
||||||
c = sizeof(verbosity_colors) / sizeof(char *) - 1;
|
c = sizeof(verbosity_colors) / sizeof(char *) - 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -96,7 +96,7 @@ void _sway_log(log_importance_t verbosity, const char* format, ...) {
|
|||||||
void sway_log_errno(log_importance_t verbosity, char* format, ...) {
|
void sway_log_errno(log_importance_t verbosity, char* format, ...) {
|
||||||
if (verbosity <= v) {
|
if (verbosity <= v) {
|
||||||
unsigned int c = verbosity;
|
unsigned int c = verbosity;
|
||||||
if (c > sizeof(verbosity_colors) / sizeof(char *)) {
|
if (c > sizeof(verbosity_colors) / sizeof(char *) - 1) {
|
||||||
c = sizeof(verbosity_colors) / sizeof(char *) - 1;
|
c = sizeof(verbosity_colors) / sizeof(char *) - 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user