MCPcopy Create free account
hub / github.com/audacity/audacity / fsdirSetErrmsg

Function fsdirSetErrmsg

lib-src/sqlite/shell.c:2774–2779  ·  view source on GitHub ↗

** Set the error message for the virtual table associated with cursor ** pCur to the results of vprintf(zFmt, ...). */

Source from the content-addressed store, hash-verified

2772** pCur to the results of vprintf(zFmt, ...).
2773*/
2774static 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/*

Callers 2

fsdirNextFunction · 0.85
fsdirFilterFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected