Skip to content

Commit 0881633

Browse files
committed
secp256k1.h: clarify that by default arguments must be != NULL
The same file says that the illegal callback will only triger for violations explicitly mentioned, which is not true without this commit because we often don't mention that an argument is not allowed to be NULL.
1 parent efad350 commit 0881633

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

include/secp256k1.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ extern "C" {
77

88
#include <stddef.h>
99

10-
/* These rules specify the order of arguments in API calls:
10+
/* Unless explicitly stated all pointer arguments must not be NULL.
11+
*
12+
* The following rules specify the order of arguments in API calls:
1113
*
1214
* 1. Context pointers go first, followed by output arguments, combined
1315
* output/input arguments, and finally input-only arguments.

0 commit comments

Comments
 (0)