From 2e84b4e82dbf8fce0fd12fb0c25d925ffd287970 Mon Sep 17 00:00:00 2001 From: Ondrej Zajicek Date: Sun, 23 Mar 2014 01:40:37 +0100 Subject: [PATCH] Fixes a bug in rte_src handling. --- nest/proto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nest/proto.c b/nest/proto.c index cfa6ff4b..d87d05c1 100644 --- a/nest/proto.c +++ b/nest/proto.c @@ -1095,7 +1095,7 @@ proto_notify_state(struct proto *p, unsigned ps) if ((cs == FS_FEEDING) || (cs == FS_HAPPY)) proto_schedule_flush(p); - if (p->proto->multitable) + if (!p->proto->multitable) { rt_unlock_source(p->main_source); p->main_source = NULL;