xzdec: Call tuklib_progname_init() early enough

If the early pledge() call on OpenBSD fails, it calls my_errorf()
which requires the "progname" variable.

Fixes: d74fb5f060
(cherry picked from commit 4e936f2340)
This commit is contained in:
Lasse Collin 2024-12-18 14:12:22 +02:00
parent 3e0bc4e91f
commit f9f0cdae8a
No known key found for this signature in database
GPG Key ID: 38EE757D69184620
1 changed files with 3 additions and 3 deletions

View File

@ -391,6 +391,9 @@ error:
int
main(int argc, char **argv)
{
// Initialize progname which we will be used in error messages.
tuklib_progname_init(argv);
#ifdef HAVE_PLEDGE
// OpenBSD's pledge(2) sandbox.
// Initially enable the sandbox slightly more relaxed so that
@ -416,9 +419,6 @@ main(int argc, char **argv)
(void)prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0);
#endif
// Initialize progname which we will be used in error messages.
tuklib_progname_init(argv);
// Parse the command line options.
parse_options(argc, argv);