mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
sm: On Windows close the kbx files at several places.
* kbx/keybox-search.c (keybox_search_reset) [W32]: Always close. * kbx/keybox-init.c (keybox_close_all_files): New. * sm/keydb.c (keydb_close_all_files): New. * sm/call-dirmngr.c (gpgsm_dirmngr_isvalid): Call new function. (gpgsm_dirmngr_lookup): Ditto. (gpgsm_dirmngr_run_command): Ditto. -- We need to make sure that there are no open files on Windows. Thus we close them at several strategic locations. GnuPG-bug-id: 4505
This commit is contained in:
parent
c99f3599d8
commit
2b9ae79ad8
6 changed files with 56 additions and 1 deletions
|
@ -814,6 +814,10 @@ keybox_search_reset (KEYBOX_HANDLE hd)
|
|||
|
||||
if (hd->fp)
|
||||
{
|
||||
#if HAVE_W32_SYSTEM
|
||||
es_fclose (hd->fp);
|
||||
hd->fp = NULL;
|
||||
#else
|
||||
if (es_fseeko (hd->fp, 0, SEEK_SET))
|
||||
{
|
||||
/* Ooops. Seek did not work. Close so that the search will
|
||||
|
@ -821,6 +825,7 @@ keybox_search_reset (KEYBOX_HANDLE hd)
|
|||
es_fclose (hd->fp);
|
||||
hd->fp = NULL;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
hd->error = 0;
|
||||
hd->eof = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue