mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-30 16:51:41 +00:00
Fix mostly harmless typo:
if (data); free(data); Discovered by: emacs cc-mode
This commit is contained in:
parent
fba3cfdef2
commit
b048419e0d
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=70128
@ -407,7 +407,7 @@ _nis_grscan(rv, cb_data, ap)
|
|||||||
if (yp_first(__ypdomain, "group.byname",
|
if (yp_first(__ypdomain, "group.byname",
|
||||||
&__ypcurrent, &__ypcurrentlen,
|
&__ypcurrent, &__ypcurrentlen,
|
||||||
&data, &datalen)) {
|
&data, &datalen)) {
|
||||||
if (data);
|
if (data)
|
||||||
free(data);
|
free(data);
|
||||||
return NS_UNAVAIL;
|
return NS_UNAVAIL;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user