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;
sqlite3_free(p->db);
p->db = 0;
p->zDb = 0;
p->zDir = 0;
p->zCmd = 0;
p->zDest = "off";
}
|
|
|
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;
sqlite3_close(p->db);
p->db = 0;
p->zDb = 0;
p->zDir = 0;
p->zCmd = 0;
p->zDest = "off";
}
|