- fix: lclint fiddles broke uCache initialization (#43139).

CVS patchset: 4829
CVS date: 2001/06/01 22:00:07
This commit is contained in:
jbj 2001-06-01 22:00:07 +00:00
parent 3720e702da
commit 9e1929c9bb
2 changed files with 11 additions and 16 deletions

View File

@ -76,6 +76,7 @@
- fix: return suggested packages when using Depends cache.
- merge sparc64/ia64 fiddles back into linux.{req,prov}.
- automagically generate perl module dependencies always.
- fix: lclint fiddles broke uCache initialization (#43139).
4.0 -> 4.0.[12]
- add doxygen and lclint annotations most everywhere.

View File

@ -171,23 +171,18 @@ static void urlFind(/*@null@*/ /*@in@*/ /*@out@*/ urlinfo *uret, int mustAsk)
{
urlinfo u;
int ucx;
int i;
int i = 0;
if (uret == NULL)
return;
if (uCache == NULL) {
*uret = NULL;
return;
}
u = *uret;
URLSANE(u);
ucx = -1;
for (i = 0; i < uCount; i++) {
urlinfo ou;
if ((ou = uCache[i]) == NULL) {
urlinfo ou = NULL;
if (uCache == NULL || (ou = uCache[i]) == NULL) {
if (ucx < 0)
ucx = i;
continue;
@ -211,11 +206,9 @@ static void urlFind(/*@null@*/ /*@in@*/ /*@out@*/ urlinfo *uret, int mustAsk)
if (i == uCount) {
if (ucx < 0) {
ucx = uCount++;
if (uCache)
uCache = xrealloc(uCache, sizeof(*uCache) * uCount);
else
uCache = xmalloc(sizeof(*uCache));
}
if (uCache) /* XXX always true */
uCache[ucx] = urlLink(u, "uCache (miss)");
u = urlFree(u, "urlSplit (urlFind miss)");
} else {
@ -225,6 +218,7 @@ static void urlFind(/*@null@*/ /*@in@*/ /*@out@*/ urlinfo *uret, int mustAsk)
/* This URL is now cached. */
if (uCache) /* XXX always true */
u = urlLink(uCache[ucx], "uCache");
*uret = u;
/*@-usereleased@*/
@ -239,8 +233,8 @@ static void urlFind(/*@null@*/ /*@in@*/ /*@out@*/ urlinfo *uret, int mustAsk)
if (u->urltype == URL_IS_FTP) {
if (mustAsk || (u->user != NULL && u->password == NULL)) {
/*@observer@*/ const char * host = (u->host ? u->host : "");
/*@observer@*/ const char * user = (u->user ? u->user : "");
const char * host = (u->host ? u->host : "");
const char * user = (u->user ? u->user : "");
char * prompt;
prompt = alloca(strlen(host) + strlen(user) + 256);
sprintf(prompt, _("Password for %s@%s: "), user, host);