forked from pool/compat-usrmerge
avoid allocation
OBS-URL: https://build.opensuse.org/package/show/Base:System/compat-usrmerge?expand=0&rev=12
This commit is contained in:
parent
81fced0166
commit
ba81243db7
@ -105,10 +105,4 @@ done
|
||||
set +e
|
||||
|
||||
echo "Run ldconfig."
|
||||
ldconfig -r "$ROOT"
|
||||
|
||||
#. $ROOT/etc/selinux/config
|
||||
#if [ -n "$(command -v setfiles)" ] && [ "$SELINUX" != "disabled" ] && [ -f /etc/selinux/${SELINUXTYPE}/contexts/files/file_contexts ]; then
|
||||
# echo "Fixing SELinux labels"
|
||||
# setfiles -r $ROOT -p /etc/selinux/${SELINUXTYPE}/contexts/files/file_contexts $ROOT/sbin $ROOT/bin $ROOT/lib $ROOT/lib64 $ROOT/usr/lib $ROOT/usr/lib64 $ROOT/etc/ld.so.cache $ROOT/var/cache/ldconfig || :
|
||||
#fi
|
||||
ldconfig -r "$ROOT" || :
|
||||
|
11
xmv.c
11
xmv.c
@ -31,6 +31,7 @@
|
||||
#include <errno.h>
|
||||
#include <getopt.h>
|
||||
#include <fcntl.h>
|
||||
#include <limits.h>
|
||||
|
||||
#ifndef RENAME_EXCHANGE
|
||||
# define RENAME_EXCHANGE (1 << 1)
|
||||
@ -74,13 +75,16 @@ int main(int argc, char** argv)
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Fallback for systems without renameat2 support */
|
||||
char *tmp;
|
||||
r = asprintf(&tmp, "%s.XXXXXX", target);
|
||||
// Fallback for systems without renameat2 support
|
||||
puts("!!! WARNING: rename2 RENAME_EXCHANGE not supported !!!");
|
||||
puts("!!! fallback to unsafe rename !!!");
|
||||
char tmp[PATH_MAX];
|
||||
r = snprintf(tmp, sizeof(tmp), "%s.XXXXXX", target);
|
||||
if (r < 0) {
|
||||
perror("asprintf");
|
||||
return 1;
|
||||
}
|
||||
// not intended to be use in /tmp so good enough
|
||||
mktemp(tmp);
|
||||
|
||||
r = renameat(AT_FDCWD, target, AT_FDCWD, tmp);
|
||||
@ -88,7 +92,6 @@ int main(int argc, char** argv)
|
||||
r = renameat(AT_FDCWD, source, AT_FDCWD, target);
|
||||
if (!r)
|
||||
r = renameat(AT_FDCWD, tmp, AT_FDCWD, source);
|
||||
free(tmp);
|
||||
|
||||
if (r < 0) {
|
||||
perror("renameat");
|
||||
|
Loading…
Reference in New Issue
Block a user