Browse Source

TT#82650 fix /list never ending output

Change-Id: I23966c6d05f24ab3f2f43f58c7c0cf0fda1ca214
changes/62/40362/3
Richard Fuchs 6 years ago
parent
commit
7063a27f70
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      kernel-module/xt_RTPENGINE.c

+ 3
- 0
kernel-module/xt_RTPENGINE.c View File

@ -1447,6 +1447,9 @@ static void *proc_list_next(struct seq_file *f, void *v, loff_t *o) { /* v is in
*o = (addr_bucket << 17) | port;
table_put(t);
if (!g) // EOF
*o = 256 << 17;
return g;
}


Loading…
Cancel
Save