~thomir-deactivatedaccount/drizzle/drizzle-fix-bug653747

« back to all changes in this revision

Viewing changes to include/my_trie.h

Merged in Jay's tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
  {
126
126
    uchar p;
127
127
    if (! (node= node->links))
128
 
      DBUG_RETURN(FALSE);
 
128
      DBUG_RETURN(false);
129
129
    p= key[k];
130
130
    while (p != node->c)
131
131
      if (! (node= node->next))
132
 
        DBUG_RETURN(FALSE);
 
132
        DBUG_RETURN(false);
133
133
  }
134
134
 
135
135
  DBUG_RETURN(node->leaf > 0);