Daniel Shahaf wrote on Fri, Mar 15, 2013 at 00:57:49 +0200: > C. Michael Pilato wrote on Thu, Mar 14, 2013 at 09:53:27 -0400: > > That malfunction comes from svn_token__from_word_strict(): > > > > int > > svn_token__from_word_strict(const svn_token_map_t *map, > > const char *word) > > { > > int value = svn_token__from_word(map, word); > > > > if (value == SVN_TOKEN_UNKNOWN) > > SVN_ERR_MALFUNCTION_NO_RETURN(); > > > > return value; > > } > > > > Not much to go on here, unfortunately. Obviously if the problem was the > > Fortunately there are very few svn_token_map_t instances in the code:
P.S. I didn't check whether tsvn's code uses svn_token_map_t directly (or has a code path that can call into svn_token__from_word_strict()).