SecBSD's official ports repository

This commit is contained in:
purplerain 2023-08-16 22:26:55 +00:00
commit 2c0afcbbf3
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
64331 changed files with 5339189 additions and 0 deletions

View file

@ -0,0 +1,17 @@
--- cf-agent/verify_files.c.orig Wed Jan 20 00:29:13 2016
+++ cf-agent/verify_files.c Wed Jan 20 00:32:12 2016
@@ -680,12 +680,12 @@ PromiseResult ScheduleEditOperation(EvalContext *ctx,
if ((vp = PromiseGetConstraintAsRval(pp, "edit_line", RVAL_TYPE_FNCALL)))
{
fp = (FnCall *) vp;
- strcpy(edit_bundle_name, fp->name);
+ strlcpy(edit_bundle_name, fp->name, CF_BUFSIZE);
args = fp->args;
}
else if ((vp = PromiseGetConstraintAsRval(pp, "edit_line", RVAL_TYPE_SCALAR)))
{
- strcpy(edit_bundle_name, (char *) vp);
+ strlcpy(edit_bundle_name, (char *) vp, CF_BUFSIZE);
args = NULL;
}
else