Differences From Artifact [4bce232ff2]:
- File src/email.c — part of check-in [f87fb02780] at 2018-06-24 17:44:57 on branch trunk — Extra defenses against running the digest alert generator in a context where the transaction will rollback, thus failing to record the new digest time. Change the "fossil server" and "fossil ui" commands to always log errors to the console if no other error logging is defined. (user: drh size: 58987)
To Artifact [44026b34b6]:
- File src/email.c — part of check-in [b9121b4797] at 2018-06-25 13:32:58 on branch trunk — Make sure emailerShutdown() correctly closes the emailqueue database. (user: drh size: 58988)
︙ | |||
346 347 348 349 350 351 352 | 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 | - + | /* ** Shutdown an emailer. Clear all information other than the error message. */ static void emailerShutdown(EmailSender *p){ sqlite3_finalize(p->pStmt); p->pStmt = 0; |
︙ |