Revision 2b42be5eb24564227b15e66f54f088e5a26549c7 authored by Jan Kara on 11 March 2019, 14:27:02 UTC, committed by Jan Kara on 18 March 2019, 15:30:02 UTC
Make udf_truncate_extents() properly propagate errors to its callers and
let udf_setsize() handle the error properly as well. This lets userspace
know in case there's some error when truncating blocks.

Signed-off-by: Jan Kara <jack@suse.cz>
1 parent d3ca465
Raw File
gcc-x86_32-has-stack-protector.sh
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0

echo "int foo(void) { char X[200]; return 3; }" | $* -S -x c -c -m32 -O0 -fstack-protector - -o - 2> /dev/null | grep -q "%gs"
back to top