cryptodev_digest_copy: return error if allocating dstate->mac_data fails
[openssl.git] / util / shlib_wrap.sh
index d744ff303d6affd6b8c50b64ded90e8895bbaf99..8775cb5411e1f2397eb0e138203b2c9636411f50 100755 (executable)
@@ -88,4 +88,10 @@ if [ -f "$LIBCRYPTOSO" -a -z "$preload_var" ]; then
        export LD_PRELOAD _RLD_LIST DYLD_INSERT_LIBRARIES
 fi
 
-exec "$@"
+cmd="$1${EXE_EXT}"
+shift
+if [ $# -eq 0 ]; then
+       exec "$cmd"     # old sh, such as Tru64 4.x, fails to expand empty "$@"
+else
+       exec "$cmd" "$@"
+fi