Hi,

On Sun, Aug 25, 2002 at 12:13:50PM -0500, David W. Chapman Jr. wrote:
> This is exactly the problem I'm seeing and would explain why 
> portupgrade -f fixes the problem for the port that causes the segfault.
> Shouldn't pkg_version handle this a little more gracefully?

Can someone with a src commit bit please do the honours...

Index: perform.c
===================================================================
RCS file: /usr/home/ncvs/src/usr.sbin/pkg_install/version/perform.c,v
retrieving revision 1.1
diff -u -r1.1 perform.c
--- perform.c   24 Jun 2002 16:03:24 -0000      1.1
+++ perform.c   26 Jun 2002 19:24:18 -0000
@@ -109,6 +109,10 @@
     }
     read_plist(&plist, fp);
     fclose(fp);
+    if (plist.name == NULL) {
+       warnx("%s does not appear to be a valid package!", pkg);
+       return 1;
+    }
 
     /*
      * First we check if the installed package has an origin, and try

Regards,
  -Jeremy

-- 
FreeBSD - Because the best things in life are free...
                                           http://www.freebsd.org/

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to