1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-29 11:21:54 +03:00

Can't return SAFE_FREE...put on its own line.

(This used to be commit 9f1a4809b5)
This commit is contained in:
Jim McDonough 2003-02-19 15:46:15 +00:00
parent ffcee0c95e
commit f15ed71fbb

View File

@ -133,7 +133,8 @@ krb5_error_code get_kerberos_allowed_etypes(krb5_context context,
#if defined(HAVE_KRB5_FREE_KTYPES)
return krb5_free_ktypes(context, enctypes);
#else
return SAFE_FREE(enctypes);
SAFE_FREE(enctypes);
return;
#endif
}