]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Remove uncompilable tor_mmap_file fallback. #25398
authorAlex Xu (Hello71) <alex_y_xu@yahoo.ca>
Fri, 2 Mar 2018 14:49:35 +0000 (09:49 -0500)
committerAlex Xu (Hello71) <alex_y_xu@yahoo.ca>
Fri, 2 Mar 2018 14:51:53 +0000 (09:51 -0500)
changes/bug25398 [new file with mode: 0644]
src/common/compat.c

diff --git a/changes/bug25398 b/changes/bug25398
new file mode 100644 (file)
index 0000000..5f3fd7f
--- /dev/null
@@ -0,0 +1,2 @@
+  o Minor bugfixes (portability):
+    - Remove uncompilable tor_mmap_file fallback. Fixes bug 25398.
index e8916c8d1f2b11c12e37256588a7425ac0a2f1b9..9457b82890d4e1c253a2c081a8ca46f5ea2e4e17 100644 (file)
@@ -417,40 +417,8 @@ tor_munmap_file(tor_mmap_t *handle)
   return 0;
 }
 #else
-tor_mmap_t *
-tor_mmap_file(const char *filename)
-{
-  struct stat st;
-  char *res = read_file_to_str(filename, RFTS_BIN|RFTS_IGNORE_MISSING, &st);
-  tor_mmap_t *handle;
-  if (! res)
-    return NULL;
-  handle = tor_malloc_zero(sizeof(tor_mmap_t));
-  handle->data = res;
-  handle->size = st.st_size;
-  return handle;
-}
-
-/** Unmap the file mapped with tor_mmap_file(), and return 0 for success
- * or -1 for failure.
- */
-
-int
-tor_munmap_file(tor_mmap_t *handle)
-{
-  char *d = NULL;
-  if (handle == NULL)
-    return 0;
-
-  d = (char*)handle->data;
-  tor_free(d);
-  memwipe(handle, 0, sizeof(tor_mmap_t));
-  tor_free(handle);
-
-  /* Can't fail in this mmap()/munmap()-free case */
-  return 0;
-}
-#endif /* defined(COMPAT_HAS_MMAN_AND_PAGESIZE) || ... || ... */
+#error "cannot implement tor_mmap_file"
+#endif /* defined(HAVE_MMAP) || ... || ... */
 
 /** Replacement for snprintf.  Differs from platform snprintf in two
  * ways: First, always NUL-terminates its output.  Second, always