Skip to content

Commit 03a902f

Browse files
committed
x
1 parent 5c4dfc7 commit 03a902f

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

guppy.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,11 @@ typedef struct GuppySocket {
4040

4141
/*============================================================================*/
4242
static void guppy_close(void *c) {
43-
char unused[2048] = {0};
4443
GuppySocket *s = (GuppySocket *)c;
45-
unused[2040 + s->fd] ^= s->fd;
4644
GuppyChunk *chunk, *tmp;
4745
close(s->fd);
4846
LIST_FOREACH_SAFE(chunk, &s->chunks, next, tmp) free(chunk);
4947
free(c);
50-
close(unused[2047]);
5148
}
5249

5350

0 commit comments

Comments
 (0)