diff --git a/Documentation/NuttXCCodingStandard.html b/Documentation/NuttXCCodingStandard.html index 2b187b50fc110..74522f2ed2710 100644 --- a/Documentation/NuttXCCodingStandard.html +++ b/Documentation/NuttXCCodingStandard.html @@ -87,7 +87,7 @@
Last Updated: July 6, 2019
+Last Updated: January 2, 2020
@@ -2182,9 +2182,8 @@(void) to indicate that the return value is intentionally ignored.
- An exception of for standard functions for which people have historically ignored the returned values, such as printf() or close.
- All calls to malloc or realloc must be checked for failures to allocate memory.
+ Ignored return values are always suspicious.
+ All calls to malloc or realloc, in particular, must be checked for failures to allocate memory to avoid use of NULL pointers.