summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--slirp/mbuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/slirp/mbuf.c b/slirp/mbuf.c
index 0c189e1a7b..1b7868355a 100644
--- a/slirp/mbuf.c
+++ b/slirp/mbuf.c
@@ -154,7 +154,7 @@ m_inc(struct mbuf *m, int size)
int datasize;
/* some compilers throw up on gotos. This one we can fake. */
- if (m->m_size > size) {
+ if (M_ROOM(m) > size) {
return;
}