* asn1_encode_k.c (asn1_encode_pa_data): oops still check NULL if
authorTom Yu <tlyu@mit.edu>
Thu, 14 Jul 1994 07:40:07 +0000 (07:40 +0000)
committerTom Yu <tlyu@mit.edu>
Thu, 14 Jul 1994 07:40:07 +0000 (07:40 +0000)
length != 0

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

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

index c6d64bda3c113b228941f173540dfb057b2053be..58699399ec695b6b7849850b1f39e1f97837a703 100644 (file)
@@ -1,3 +1,8 @@
+Thu Jul 14 01:26:22 1994  Tom Yu  (tlyu at dragons-lair)
+
+       * asn1_encode_k.c (asn1_encode_pa_data): oops still check NULL if
+       length != 0
+
 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
index 60ea6d5d32979e98d7fa3f7abff8d6370fc1a1c8..5220c3b2d3c588cb64347e2e938ae59d4e02c2c0 100644 (file)
@@ -640,7 +640,8 @@ asn1_error_code asn1_encode_pa_data(DECLARG(asn1buf *, buf),
 {
   asn1_setup();
 
-  if(val == NULL) return ASN1_MISSING_FIELD;
+  if(val == NULL || (val->length != 0 && val->contents == NULL))
+     return ASN1_MISSING_FIELD;
 
   asn1_addlenfield(val->length,val->contents,2,asn1_encode_octetstring);
   asn1_addfield(val->pa_type,1,asn1_encode_integer);