summaryrefslogtreecommitdiffstats
path: root/xup
diff options
context:
space:
mode:
Diffstat (limited to 'xup')
-rw-r--r--xup/xup.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/xup/xup.c b/xup/xup.c
index 576fec88..77081fea 100644
--- a/xup/xup.c
+++ b/xup/xup.c
@@ -110,9 +110,13 @@ lib_data_in(struct trans *trans)
g_writeln("lib_data_in: bad size");
return 1;
}
- trans->header_size = len + 8;
- trans->extra_flags = 2;
- break;
+ if (len > 0)
+ {
+ trans->header_size = len + 8;
+ trans->extra_flags = 2;
+ break;
+ }
+ /* fall through */
case 2:
s->p = s->data;
if (lib_mod_process_message(self, s) != 0)