From 7083e7084217da8d4882ca3cb35824bb128e101c Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Thu, 2 Sep 2021 15:33:11 -0700 Subject: [PATCH] Remove an out-of-date comment. (It appears gsize/gssize are now the same size as size_t, even on 64-bit Windows, i.e. they're long longs on 64-bit Windows.) --- wiretap/file_wrappers.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/wiretap/file_wrappers.c b/wiretap/file_wrappers.c index 0e3c70dfe7..8e9e3ab2c6 100644 --- a/wiretap/file_wrappers.c +++ b/wiretap/file_wrappers.c @@ -1138,11 +1138,6 @@ file_fdopen(int fd) want = MAX_READ_BUF_SIZE; } #endif - /* - * And GLib uses gsize, not size_t, as the argument type for - * g_try_malloc(). Make sure what we have still fits. - */ - /* allocate buffers */ state->in.buf = (unsigned char *)g_try_malloc(want); state->in.next = state->in.buf;