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 commit is contained in:
Jim McDonough 0001-01-01 00:00:00 +00:00
parent 762b072efb
commit 9f1a4809b5

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
}