Correct truncation detection after use of snprintf: The case where
exactly one character was truncated was not detected.
This commit is contained in:
parent
8c6e6b677a
commit
1f8eedbe4a
@ -159,7 +159,7 @@ extract_plist(const char *home, Package *pkg)
|
||||
PUSHOUT(Directory);
|
||||
}
|
||||
add_count = snprintf(&perm_args[perm_count], maxargs - perm_count, "'%s' ", p->name);
|
||||
if (add_count < 0 || add_count > maxargs - perm_count) {
|
||||
if (add_count < 0 || add_count >= maxargs - perm_count) {
|
||||
cleanup(0);
|
||||
errx(2, "%s: oops, miscounted strings!", __func__);
|
||||
}
|
||||
@ -179,7 +179,7 @@ extract_plist(const char *home, Package *pkg)
|
||||
PUSHOUT(Directory);
|
||||
}
|
||||
add_count = snprintf(&where_args[where_count], maxargs - where_count, " '%s'", p->name);
|
||||
if (add_count < 0 || add_count > maxargs - where_count) {
|
||||
if (add_count < 0 || add_count >= maxargs - where_count) {
|
||||
cleanup(0);
|
||||
errx(2, "%s: oops, miscounted strings!", __func__);
|
||||
}
|
||||
@ -187,7 +187,7 @@ extract_plist(const char *home, Package *pkg)
|
||||
add_count = snprintf(&perm_args[perm_count],
|
||||
maxargs - perm_count,
|
||||
"'%s' ", p->name);
|
||||
if (add_count < 0 || add_count > maxargs - perm_count) {
|
||||
if (add_count < 0 || add_count >= maxargs - perm_count) {
|
||||
cleanup(0);
|
||||
errx(2, "%s: oops, miscounted strings!", __func__);
|
||||
}
|
||||
|
@ -204,7 +204,7 @@ copy_plist(const char *home, Package *plist)
|
||||
p->name);
|
||||
last_chdir = home;
|
||||
}
|
||||
if (add_count < 0 || add_count > maxargs - where_count) {
|
||||
if (add_count < 0 || add_count >= maxargs - where_count) {
|
||||
cleanup(0);
|
||||
errx(2, "%s: oops, miscounted strings!", __func__);
|
||||
}
|
||||
@ -242,7 +242,7 @@ copy_plist(const char *home, Package *plist)
|
||||
" -C %s %s",
|
||||
mythere ? mythere : where,
|
||||
p->name);
|
||||
if (add_count < 0 || add_count > maxargs - where_count) {
|
||||
if (add_count < 0 || add_count >= maxargs - where_count) {
|
||||
cleanup(0);
|
||||
errx(2, "%s: oops, miscounted strings!", __func__);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user