- fix: initialize variables used in debug msg (#160458).

CVS patchset: 7881
CVS date: 2005/07/13 11:15:16
This commit is contained in:
jbj 2005-07-13 11:15:16 +00:00
parent d66903fe9c
commit 2a16343146
2 changed files with 5 additions and 4 deletions

View File

@ -22,6 +22,7 @@
- fix: permit sqlite3 rpmdb with chroot (#159424).
- fix: find-debuginfo.sh not handling set[ug]id ELF files (#100963).
- fix: find-debuginfo.sh kernel voo-doo tweaks (#159346).
- fix: initialize variables used in debug msg (#160458).
4.4 -> 4.4.1:
- force *.py->*.pyo byte code compilation with brp-python-bytecompile.

View File

@ -632,6 +632,10 @@ static rpmRC runScript(rpmpsm psm, Header h, const char * sln,
if (progArgv == NULL && script == NULL)
return rc;
/* XXX FIXME: except for %verifyscript, rpmteNEVR can be used. */
xx = headerNVR(h, &n, &v, &r);
xx = hge(h, RPMTAG_ARCH, NULL, (void **) &a, NULL);
if (progArgv && strcmp(progArgv[0], "<lua>") == 0) {
rpmMessage(RPMMESS_DEBUG,
_("%s: %s(%s-%s-%s.%s) running <lua> scriptlet.\n"),
@ -642,10 +646,6 @@ static rpmRC runScript(rpmpsm psm, Header h, const char * sln,
psm->sq.reaper = 1;
/* XXX FIXME: except for %verifyscript, rpmteNEVR can be used. */
xx = headerNVR(h, &n, &v, &r);
xx = hge(h, RPMTAG_ARCH, NULL, (void **) &a, NULL);
/* XXX bash must have functional libtermcap.so.2 */
if (!strcmp(n, "libtermcap"))
ldconfig_done = 0;