Fx contrib and lint err
Altlinux build / build-alt (push) Successful in 2m44s
Archlinux build / build-arch (push) Successful in 3m12s
Archlinux build / make-test (push) Successful in 1m1s
Debian build / build-ubuntu (push) Successful in 4m3s

This commit is contained in:
zx
2025-04-19 08:38:06 +03:00
parent 245f11724d
commit 5a036bb150
7 changed files with 21 additions and 8 deletions
+8 -1
View File
@@ -1780,7 +1780,14 @@ static int expr_check_mailer(const char *str)
static int expr_check_addr(const char *str)
{
s_faddr addr;
s_faddr addr = {
.inetform = false,
.zone = 0,
.net = 0,
.node = 0,
.point = 0,
.domain = '\0' };
#ifdef DEBUG
char abuf1[BF_MAXADDRSTR+1];
char abuf2[BF_MAXADDRSTR+1];
+7 -1
View File
@@ -360,7 +360,13 @@ static int expr_check_mailer(const char *str)
static int expr_check_addr(const char *str)
{
s_faddr addr = { 0, 0, 0, 0, 0, '\0' };
s_faddr addr = {
.inetform = false,
.zone = 0,
.net = 0,
.node = 0,
.point = 0,
.domain = '\0' };
#ifdef DEBUG
char abuf1[BF_MAXADDRSTR+1];
+1 -1
View File
@@ -155,7 +155,7 @@ int exec_redirect_descriptor(int desc, const char *fname, int flags)
close(fd);
return -1;
}
//cppcheck-suppress resourceLeak
return 0;
}