commit - f5b0315f0e07bfd36a4eb37d91884fcd8614745a
commit + 5dffb1a14a4e706b322f648797d0fea44e684aa8
blob - 6b6915f9998d30a1ae5b1846365b299ba2c974fe
blob + 2cd5efa8a0d460c9850691dc1feb2a9f38ad1927
--- lib/patch.c
+++ lib/patch.c
}
static const struct got_error *
-patch_file(struct got_patch *p, FILE *orig, FILE *tmp, mode_t *mode)
+patch_file(struct got_patch *p, FILE *orig, FILE *tmp)
{
const struct got_error *err = NULL;
struct got_patch_hunk *h;
if (fstat(fileno(orig), &sb) == -1)
return got_error_from_errno("fstat");
- *mode = sb.st_mode;
copypos = 0;
STAILQ_FOREACH(h, &p->head, entries) {
struct patch_args *pa, got_cancel_cb cancel_cb, void *cancel_arg)
{
const struct got_error *err = NULL;
+ struct stat sb;
int do_merge = 0, file_renamed = 0;
char *oldlabel = NULL, *newlabel = NULL, *anclabel = NULL;
char *oldpath = NULL, *newpath = NULL;
goto done;
}
- if (p->old != NULL && (oldfile = fopen(oldpath, "r")) == NULL) {
- err = got_error_from_errno2("open", oldpath);
- goto done;
+ if (p->old != NULL) {
+ if ((oldfile = fopen(oldpath, "r")) == NULL) {
+ err = got_error_from_errno2("open", oldpath);
+ goto done;
+ }
+ if (fstat(fileno(oldfile), &sb) == -1) {
+ err = got_error_from_errno2("fstat", oldpath);
+ goto done;
+ }
+ mode = sb.st_mode;
}
err = got_opentemp_named(&tmppath, &tmpfile, template);
goto done;
outpath = tmppath;
outfd = fileno(tmpfile);
- err = patch_file(p, afile != NULL ? afile : oldfile, tmpfile, &mode);
+ err = patch_file(p, afile != NULL ? afile : oldfile, tmpfile);
if (err)
goto done;
blob - a7ff83ea9847a8fa722fdbfda0cfc471da1d050d
blob + c16e62c4b053ddda85d0a0c0b1761790032b168c
--- regress/cmdline/patch.sh
+++ regress/cmdline/patch.sh
fi
jot 10 > $testroot/wt/numbers
+ chmod +x $testroot/wt/numbers
(cd $testroot/wt && got add numbers && got commit -m +numbers) \
> /dev/null
ret=$?
ret=$?
if [ $ret -ne 0 ]; then
diff -u $testroot/wt/numbers $testroot/wt/numbers.expected
+ test_done $testroot $ret
+ return 1
fi
+
+ test -x $testroot/wt/numbers
+ ret=$?
+ if [ $ret -ne 0 ]; then
+ echo "numbers lost the executable bit" >&2
+ fi
test_done $testroot $ret
}