remove gratuitous null ptr check

Noticed by:	Coverity Prevent analysis tool
This commit is contained in:
Sam Leffler 2005-02-24 02:06:22 +00:00
parent c2235096d7
commit 7e53be277f

View File

@ -165,8 +165,7 @@ dpt_eisa_attach (device_t dev)
bad:
dpt_release_resources(dev);
if (dpt)
dpt_free(dpt);
dpt_free(dpt);
return (error);
}