1
0
mirror of https://github.com/sqlite/sqlite.git synced 2026-01-06 08:01:16 +03:00

Fix a missing va_end() call in the intckMprintf() function of the

incremental integrity-check extension.

FossilOrigin-Name: 62ad2350e368dc337ba2d0fb6847d07c40a6f79520dd6414d22b5b54983b0b12
This commit is contained in:
drh
2025-11-10 11:05:36 +00:00
parent 240397bb03
commit a79f685533
3 changed files with 9 additions and 8 deletions

View File

@@ -160,6 +160,7 @@ static char *intckMprintf(sqlite3_intck *p, const char *zFmt, ...){
sqlite3_free(zRet);
zRet = 0;
}
va_end(ap);
return zRet;
}