summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--os/io.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/os/io.c b/os/io.c
index f2f4b36..124ecd8 100644
--- a/os/io.c
+++ b/os/io.c
@@ -153,17 +153,6 @@ ReadRequest(ClientPtr client)
oci->bufptr += oci->lenLastReq;
gotnow = oci->bufcnt + oci->buffer - oci->bufptr;
-
-#ifdef WORD64
- /* need 8-byte alignment */
- if ((oci->bufptr - oci->buffer) & 7 && gotnow > 0)
- {
- memmove( oci->buffer, oci->bufptr, gotnow);
- oci->bufptr = oci->buffer;
- oci->bufcnt = gotnow;
- }
-#endif
-
request = (fsReq *) oci->bufptr;
/* not enough for a request */