Add comments to NULL func ptrs in bio_method_st
[openssl.git] / crypto / bio / bss_mem.c
index a50d416f2ddca5739cac4a648a78c3b60bbfd88f..7678a1df58c5273abb0f8c5aada95ca2090aea08 100644 (file)
@@ -37,7 +37,7 @@ static const BIO_METHOD mem_method = {
     mem_ctrl,
     mem_new,
     mem_free,
-    NULL,
+    NULL,                      /* mem_callback_ctrl */
 };
 
 static const BIO_METHOD secmem_method = {
@@ -54,7 +54,7 @@ static const BIO_METHOD secmem_method = {
     mem_ctrl,
     secmem_new,
     mem_free,
-    NULL,
+    NULL,                      /* mem_callback_ctrl */
 };
 
 /* BIO memory stores buffer and read pointer  */