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

Function ctxErrorMsg

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

** Set the error message contained in context ctx to the results of ** vprintf(zFmt, ...). */

Source from the content-addressed store, hash-verified

2308** vprintf(zFmt, ...).
2309*/
2310static void ctxErrorMsg(sqlite3_context *ctx, const char *zFmt, ...){
2311 char *zMsg = 0;
2312 va_list ap;
2313 va_start(ap, zFmt);
2314 zMsg = sqlite3_vmprintf(zFmt, ap);
2315 sqlite3_result_error(ctx, zMsg, -1);
2316 sqlite3_free(zMsg);
2317 va_end(ap);
2318}
2319
2320#if defined(_WIN32)
2321/*

Callers 1

writefileFuncFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected