** Set the error message for the virtual table associated with cursor ** pCur to the results of vprintf(zFmt, ...). */
| 6137 | ** pCur to the results of vprintf(zFmt, ...). |
| 6138 | */ |
| 6139 | static void fsdirSetErrmsg(fsdir_cursor *pCur, const char *zFmt, ...){ |
| 6140 | va_list ap; |
| 6141 | va_start(ap, zFmt); |
| 6142 | pCur->base.pVtab->zErrMsg = sqlite3_vmprintf(zFmt, ap); |
| 6143 | va_end(ap); |
| 6144 | } |
| 6145 | |
| 6146 | |
| 6147 | /* |
no outgoing calls
no test coverage detected