lkml.org 
[lkml]   [2009]   [Dec]   [8]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH] fib-trie: code cleanup
On Tue, 8 Dec 2009 13:48:39 -0500
Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> wrote:

> /* use cache location of last found key */
> - if (iter->pos > 0 && pos >= iter->pos && (l = fib_find_node(t, iter->key)))
> - pos -= iter->pos;
> + if (iter->pos > 0 && pos >= iter->pos)
> + l = fib_find_node(t, iter->key);
> + if (l)
> + pos -= iter->pos;
> else {

Missing bracket's here change the semantics.


\
 
 \ /
  Last update: 2009-12-08 20:13    [W:0.052 / U:0.108 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site