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.)
This commit is contained in:
Guy Harris 2021-09-02 15:33:11 -07:00
parent 92fb6a72f8
commit 7083e70842
1 changed files with 0 additions and 5 deletions

View File

@ -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;