We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c380366 commit 9f3456bCopy full SHA for 9f3456b
include/evmc/evmc.h
@@ -418,14 +418,15 @@ struct evmc_result
418
* The memory containing the output data is owned by EVM and has to be
419
* freed with evmc_result::release().
420
*
421
- * This MAY be NULL.
+ * This pointer MAY be NULL.
422
+ * If evmc_result::output_size is 0 this pointer MUST NOT be dereferenced.
423
*/
424
const uint8_t* output_data;
425
426
/**
427
* The size of the output data.
428
- * If output_data is NULL this MUST be 0.
429
+ * If evmc_result::output_data is NULL this MUST be 0.
430
431
size_t output_size;
432
0 commit comments