Merge "Fix RST rendering problem" into integration

This commit is contained in:
Sandrine Bailleux 2019-07-12 07:35:28 +00:00 committed by TrustedFirmware Code Review
commit 2d78a1c6a3
1 changed files with 4 additions and 4 deletions

View File

@ -272,15 +272,15 @@ used (Banned) or are discouraged from use and must be used with care (Caution).
+------------------------+-----------+--------------------------------------+ +------------------------+-----------+--------------------------------------+
| libc function | Status | Comments | | libc function | Status | Comments |
+========================+===========+======================================+ +========================+===========+======================================+
| ``strcpy, wcscpy`` | Banned | use strlcpy instead | | ``strcpy, wcscpy``, | Banned | use strlcpy instead |
| ``strncpy`` | | | | ``strncpy`` | | |
+------------------------+-----------+--------------------------------------+ +------------------------+-----------+--------------------------------------+
| ``strcat, wcscat`` | Banned | use strlcat instead | | ``strcat, wcscat``, | Banned | use strlcat instead |
| ``strncat`` | | | | ``strncat`` | | |
+----------------------- +-----------+--------------------------------------+ +------------------------+-----------+--------------------------------------+
| ``sprintf, vsprintf`` | Banned | use snprintf, vsnprintf | | ``sprintf, vsprintf`` | Banned | use snprintf, vsnprintf |
| | | instead | | | | instead |
+---------------------- -+-----------+--------------------------------------+ +------------------------+-----------+--------------------------------------+
| ``snprintf`` | Caution | ensure result fits in buffer | | ``snprintf`` | Caution | ensure result fits in buffer |
| | | i.e : snprintf(buf,size...) < size | | | | i.e : snprintf(buf,size...) < size |
+------------------------+-----------+--------------------------------------+ +------------------------+-----------+--------------------------------------+