Skip to content

Commit

Permalink
修正笔误
Browse files Browse the repository at this point in the history
va_last 应为 va_list, fix #13
  • Loading branch information
brotherbeer authored Jan 6, 2023
1 parent 3dcd352 commit bc5682b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c-ub-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
| 166 | 格式化输入占位符 c、s、\[ 对应的参数没有足够的空间容纳输入的数据<sup> [\[\]](#comment_166) </sup> | 7.21.6.2 |
| 167 | 由 l 修饰的格式化输入占位符 c、s、\[ 对应的输入不是符合要求的多字符序列<sup> [\[\]](#comment_167) </sup> | 7.21.6.2 |
| 168 | 格式化输入占位符 %p 对应的参数不是同一个进程中的指针<sup> [\[\]](#comment_168) </sup> | 7.21.6.2 |
| 169 | 未正确初始化的 va\_last 作为 vfprintf、vscanf 等函数的参数,或者在函数返回后继续使用该参数<sup> [\[\]](#comment_169) </sup> | 7.21.6.8 |
| 169 | 未正确初始化的 va\_list 作为 vfprintf、vscanf 等函数的参数,或者在函数返回后继续使用该参数<sup> [\[\]](#comment_169) </sup> | 7.21.6.8 |
| 170 | 在 fgets 或 fgetws 失败后继续使用传入的数组<sup> [\[\]](#comment_170) </sup> | 7.21.7.2 |
| 171 | 在调用 ungetc 函数后使用二进制流的 file position indicator,而在调用之前其值为 0 | 7.21.7.10 |
| 172 | 在 fread 或 fwrite 失败后使用 file position indicator<sup> [\[\]](#comment_172) </sup> | 7.21.8.1 |
Expand Down Expand Up @@ -400,7 +400,7 @@
<br/>
<br/>

### <span id="comment_169"> 169. 未正确初始化的 va\_last 作为 vfprintf、vscanf 等函数的参数,或者在函数返回后继续使用该参数 </span>
### <span id="comment_169"> 169. 未正确初始化的 va\_list 作为 vfprintf、vscanf 等函数的参数,或者在函数返回后继续使用该参数 </span>

vfprintf、vfscanf、vprintf、vscanf、vsnprintf、vsprintf、vsscanf、vfwprintf、vfwscanf、vswprintf、vswscanf、vwprintf、vwscanf 等函数均面对同样的问题。

Expand Down

0 comments on commit bc5682b

Please sign in to comment.