When recognizing a broken package version/name,

make sure to error out really, don't just print a warning
and the run into further problems.

Coverity CID 2739.
This commit is contained in:
hubertf 2006-04-05 17:50:48 +00:00
parent cd8efba238
commit a4ff1305f4
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: str.c,v 1.61 2006/03/17 17:46:44 hubertf Exp $ */
/* $NetBSD: str.c,v 1.62 2006/04/05 17:50:48 hubertf Exp $ */
#if HAVE_CONFIG_H
#include "config.h"
@ -11,7 +11,7 @@
#if 0
static const char *rcsid = "Id: str.c,v 1.5 1997/10/08 07:48:21 charnier Exp";
#else
__RCSID("$NetBSD: str.c,v 1.61 2006/03/17 17:46:44 hubertf Exp $");
__RCSID("$NetBSD: str.c,v 1.62 2006/04/05 17:50:48 hubertf Exp $");
#endif
#endif
@ -315,6 +315,7 @@ findbestmatchingname_fn(const char *found, void *vp)
fprintf(stderr,
"'%s' has no usable package(version)\n",
best);
found_version = NULL; /* error out cheaply */
}
}