(make_pa_tgs_req): abort on internal asn1 encode error
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@13302 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -86,14 +86,17 @@ set_auth_data (krb5_context context,
|
|||||||
krb5_keyblock *key)
|
krb5_keyblock *key)
|
||||||
{
|
{
|
||||||
if(authdata->len) {
|
if(authdata->len) {
|
||||||
size_t len;
|
size_t len, buf_size;
|
||||||
unsigned char *buf;
|
unsigned char *buf;
|
||||||
krb5_crypto crypto;
|
krb5_crypto crypto;
|
||||||
krb5_error_code ret;
|
krb5_error_code ret;
|
||||||
|
|
||||||
ASN1_MALLOC_ENCODE(AuthorizationData, buf, len, authdata, &len, ret);
|
ASN1_MALLOC_ENCODE(AuthorizationData, buf, buf_size, authdata,
|
||||||
|
&len, ret);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
if (buf_size != len)
|
||||||
|
krb5_abortx(context, "internal error in ASN.1 encoder");
|
||||||
|
|
||||||
ALLOC(req_body->enc_authorization_data, 1);
|
ALLOC(req_body->enc_authorization_data, 1);
|
||||||
if (req_body->enc_authorization_data == NULL) {
|
if (req_body->enc_authorization_data == NULL) {
|
||||||
|
Reference in New Issue
Block a user