forked from mirrors/linphone-iphone
Fix ZRTP file renaming while still in use
This commit is contained in:
parent
2b3d4ae3cf
commit
ccb308eae4
1 changed files with 10 additions and 0 deletions
|
|
@ -47,6 +47,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|||
#include "mediastreamer2/msjpegwriter.h"
|
||||
#include "mediastreamer2/msogl.h"
|
||||
#include "mediastreamer2/msvolume.h"
|
||||
#include <errno.h>
|
||||
|
||||
#ifdef INET6
|
||||
#ifndef _WIN32
|
||||
|
|
@ -6616,9 +6617,18 @@ void linphone_core_set_zrtp_secrets_file(LinphoneCore *lc, const char* file){
|
|||
|
||||
/* rename the newly created sqlite3 file in to the given file name */
|
||||
rename(file, bkpFile);
|
||||
|
||||
#ifdef _WIN32
|
||||
/* We first have to close the file before renaming it */
|
||||
sqlite3_close(lc->zrtp_cache_db);
|
||||
#endif
|
||||
if (rename(tmpFile, file)==0) { /* set the flag if we were able to set the sqlite file in the correct place (even if migration failed) */
|
||||
lp_config_set_int(lc->config, "sip", "zrtp_cache_migration_done", TRUE);
|
||||
}
|
||||
#ifdef _WIN32
|
||||
/* Then reopen it */
|
||||
_linphone_sqlite3_open(file, &lc->zrtp_cache_db);
|
||||
#endif
|
||||
|
||||
/* clean up */
|
||||
bctbx_free(bkpFile);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue