git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93947
13f79535-47bb-0310-9956-
ffa450edef68
/* This is necessary simply so that the size passed to memset() is not a
* compile-time constant, preventing the compiler from optimising it. */
+#if 0
+/* XXX: this isn't used, is it needed? */
static void shmcb_safe_clear(void *ptr, size_t size)
{
memset(ptr, 0, size);
}
+#endif
/* Underlying functions for session-caching */
static BOOL shmcb_init_memory(server_rec *, void *, unsigned int);
*/
int table_clear(table_t * table_p)
{
+#if 0
table_entry_t *entry_p, *next_p;
+#endif
table_entry_t **bucket_p, **bounds_p;
if (table_p == NULL)