summaryrefslogtreecommitdiff
path: root/utils/sansapatcher
diff options
context:
space:
mode:
Diffstat (limited to 'utils/sansapatcher')
-rw-r--r--utils/sansapatcher/sansaio-posix.c1
-rw-r--r--utils/sansapatcher/sansaio-win32.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/utils/sansapatcher/sansaio-posix.c b/utils/sansapatcher/sansaio-posix.c
index 44c4dcc95c..5625ec35a4 100644
--- a/utils/sansapatcher/sansaio-posix.c
+++ b/utils/sansapatcher/sansaio-posix.c
@@ -110,6 +110,7 @@ int sansa_reopen_rw(struct sansa_t* sansa)
110int sansa_close(struct sansa_t* sansa) 110int sansa_close(struct sansa_t* sansa)
111{ 111{
112 close(sansa->dh); 112 close(sansa->dh);
113 sansa->dh = -1;
113 return 0; 114 return 0;
114} 115}
115 116
diff --git a/utils/sansapatcher/sansaio-win32.c b/utils/sansapatcher/sansaio-win32.c
index ee6a8cd93d..be250136f9 100644
--- a/utils/sansapatcher/sansaio-win32.c
+++ b/utils/sansapatcher/sansaio-win32.c
@@ -147,6 +147,7 @@ int sansa_close(struct sansa_t* sansa)
147{ 147{
148 unlock_volume(sansa->dh); 148 unlock_volume(sansa->dh);
149 CloseHandle(sansa->dh); 149 CloseHandle(sansa->dh);
150 sansa->dh = INVALID_HANDLE_VALUE;
150 return 0; 151 return 0;
151} 152}
152 153