Skip to content
Snippets Groups Projects
Commit e94e75e0 authored by dtc's avatar dtc
Browse files

Catch NULL host enter aliases in lookup-host-entry to avoid

dereferencing NULL.
parent 2808f353
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/internet.lisp,v 1.25 2000/09/15 14:40:35 pw Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/internet.lisp,v 1.26 2000/09/20 00:34:42 dtc Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -207,9 +207,11 @@ struct in_addr {
(collect ((results))
(iterate repeat ((index 0))
(declare (type kernel:index index))
(cond ((zerop (deref (cast (slot hostent 'aliases)
(* (unsigned #-alpha 32 #+alpha 64)))
index))
(cond ((or (zerop (sap-int (alien-sap (slot hostent 'aliases))))
(zerop (deref (cast (slot hostent 'aliases)
(* (unsigned #-alpha 32
#+alpha 64)))
index)))
(results))
(t
(results (deref (slot hostent 'aliases) index))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment