Fix mostly harmless typo:

if (data);
            free(data);

Discovered by:	emacs cc-mode
This commit is contained in:
Jacques Vidrine 2000-12-17 21:10:41 +00:00
parent fba3cfdef2
commit b048419e0d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=70128

View File

@ -407,7 +407,7 @@ _nis_grscan(rv, cb_data, ap)
if (yp_first(__ypdomain, "group.byname",
&__ypcurrent, &__ypcurrentlen,
&data, &datalen)) {
if (data);
if (data)
free(data);
return NS_UNAVAIL;
}