* asn1_encode_k.c (asn1_encode_pa_data): the contents field of a
authorTom Yu <tlyu@mit.edu>
Sat, 9 Jul 1994 04:29:43 +0000 (04:29 +0000)
committerTom Yu <tlyu@mit.edu>
Sat, 9 Jul 1994 04:29:43 +0000 (04:29 +0000)
krb5_pa_data structure can be NULL (e.g.
salt_type==KRB5_KDB_SALTTYPE_V4), and the encoder was treating
this as a missing required field

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3962 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/asn.1/ChangeLog
src/lib/krb5/asn.1/asn1_encode_k.c

index fd722eb15036a2d8570b5271fbcdfe3b90359382..c6d64bda3c113b228941f173540dfb057b2053be 100644 (file)
@@ -1,3 +1,10 @@
+Sat Jul  9 00:26:48 1994  Tom Yu  (tlyu at dragons-lair)
+
+       * asn1_encode_k.c (asn1_encode_pa_data): the contents field of a
+       krb5_pa_data structure can be NULL (e.g.
+       salt_type==KRB5_KDB_SALTTYPE_V4), and the encoder was treating
+       this as a missing required field
+
 Fri Jul  8 17:32:29 1994  Tom Yu  (tlyu at dragons-lair)
 
        * asn1_decode_k.c: yet another instance of the SunOS realloc bug
index eab8a5fef419998e439391c2a5fbef49e9849374..60ea6d5d32979e98d7fa3f7abff8d6370fc1a1c8 100644 (file)
@@ -640,7 +640,7 @@ asn1_error_code asn1_encode_pa_data(DECLARG(asn1buf *, buf),
 {
   asn1_setup();
 
-  if(val == NULL || val->contents == NULL) return ASN1_MISSING_FIELD;
+  if(val == NULL) return ASN1_MISSING_FIELD;
 
   asn1_addlenfield(val->length,val->contents,2,asn1_encode_octetstring);
   asn1_addfield(val->pa_type,1,asn1_encode_integer);