Re: [ovs-dev] [PATCH] lib/classifier: Fix use of uniinitialized memory.

2014-06-04 Thread Jarno Rajahalme
I accidentally sent the wrong version with a typo in the subject and small wording problems below: > On Jun 4, 2014, at 5:42 PM, Jarno Rajahalme wrote: > > When reaching the end leaf > of a prefix trie, we checked one bit off the end > to the of the > intended data. However, since the trie

[ovs-dev] [PATCH] lib/classifier: Fix use of uniinitialized memory.

2014-06-04 Thread Jarno Rajahalme
When reaching the end of a prefix trie, we checked one bit off the end to the intended data. However, since the trie node in that case has NULLs for both edge links, this did not result in incorrect functionality. Signed-off-by: Jarno Rajahalme --- lib/classifier.c | 28 +-