This function is documented as allowing NULL for out_header_len.
ok jsing@
-/* $OpenBSD: bs_cbs.c,v 1.5 2015/04/29 01:23:20 doug Exp $ */
+/* $OpenBSD: bs_cbs.c,v 1.6 2015/04/29 01:27:34 doug Exp $ */
/*
* Copyright (c) 2014, Google Inc.
*
if ((tag & CBS_ASN1_CONSTRUCTED) != 0 && num_bytes == 0) {
/* indefinite length */
- *out_header_len = 2;
+ if (out_header_len != NULL)
+ *out_header_len = 2;
return CBS_get_bytes(cbs, out, 2);
}
-/* $OpenBSD: bs_cbs.c,v 1.5 2015/04/29 01:23:20 doug Exp $ */
+/* $OpenBSD: bs_cbs.c,v 1.6 2015/04/29 01:27:34 doug Exp $ */
/*
* Copyright (c) 2014, Google Inc.
*
if ((tag & CBS_ASN1_CONSTRUCTED) != 0 && num_bytes == 0) {
/* indefinite length */
- *out_header_len = 2;
+ if (out_header_len != NULL)
+ *out_header_len = 2;
return CBS_get_bytes(cbs, out, 2);
}