228ab9f
Reference docs don't define what happens if you call krb5_realm_compare() with
228ab9f
malformed krb5_principal structures.  Define a behavior which keeps it from
228ab9f
crashing if applications don't check ahead of time.
228ab9f
228ab9f
diff -up krb5-1.7/src/lib/krb5/krb/princ_comp.c krb5-1.7/src/lib/krb5/krb/princ_comp.c
228ab9f
--- krb5-1.7/src/lib/krb5/krb/princ_comp.c	2009-01-03 18:19:42.000000000 -0500
228ab9f
+++ krb5-1.7/src/lib/krb5/krb/princ_comp.c	2009-06-04 14:31:26.000000000 -0400
228ab9f
@@ -40,6 +40,12 @@ realm_compare_flags(krb5_context context
228ab9f
     const krb5_data *realm1 = krb5_princ_realm(context, princ1);
228ab9f
     const krb5_data *realm2 = krb5_princ_realm(context, princ2);
228ab9f
 
228ab9f
+    if ((princ1 == NULL) || (princ2 == NULL))
228ab9f
+	return FALSE;
228ab9f
+
228ab9f
+    if ((realm1 == NULL) || (realm2 == NULL))
228ab9f
+	return FALSE;
228ab9f
+
228ab9f
     if (realm1->length != realm2->length)
228ab9f
 	return FALSE;
228ab9f
 
228ab9f
@@ -91,6 +97,9 @@ krb5_principal_compare_flags(krb5_contex
228ab9f
     krb5_principal upn2 = NULL;
228ab9f
     krb5_boolean ret = FALSE;
228ab9f
 
228ab9f
+    if ((princ1 == NULL) || (princ2 == NULL))
228ab9f
+	return FALSE;
228ab9f
+
228ab9f
     if (flags & KRB5_PRINCIPAL_COMPARE_ENTERPRISE) {
228ab9f
 	/* Treat UPNs as if they were real principals */
228ab9f
 	if (krb5_princ_type(context, princ1) == KRB5_NT_ENTERPRISE_PRINCIPAL) {