** Set the error message for the virtual table associated with cursor ** pCur to the results of vprintf(zFmt, ...). */
| 2772 | ** pCur to the results of vprintf(zFmt, ...). |
| 2773 | */ |
| 2774 | static void fsdirSetErrmsg(fsdir_cursor *pCur, const char *zFmt, ...){ |
| 2775 | va_list ap; |
| 2776 | va_start(ap, zFmt); |
| 2777 | pCur->base.pVtab->zErrMsg = sqlite3_vmprintf(zFmt, ap); |
| 2778 | va_end(ap); |
| 2779 | } |
| 2780 | |
| 2781 | |
| 2782 | /* |
no outgoing calls
no test coverage detected