[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Issue

From: C. Michael Pilato <cmpilato_at_collab.net>
Date: Thu, 14 Mar 2013 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
result of an *entirely normal* unlock command, our regression test would be
expected to catch it. But I don't see enough in the issue report to help us
understand what was *not* entirely normal about this operation. (For any
devs taking note, "token" in the sense of the function above is not the lock
token, but is instead a serialized string token that the function is trying
to map to an internal integer code (e.g., an enum).)

On 03/14/2013 05:39 AM, Rafael.Zalman_at_infineon.com wrote:
>
> Appeared during a normal “unlock” command.
>
>
>
>
>
> ---------------------------
>
> Subversion Exception!
>
> ---------------------------
>
> Subversion encountered a serious problem.
>
> Please take the time to report this on the Subversion mailing list
>
> with as much information as possible about what
>
> you were trying to do.
>
> But please first search the mailing list archives for the error message
>
> to avoid reporting the same problem repeatedly.
>
> You can find the mailing list archives at
>
> http://subversion.apache.org/mailing-lists.html
>
>
>
> Subversion reported the following
>
> (you can copy the content of this dialog
>
> to the clipboard using Ctrl-C):
>
>
>
> In file
>
> 'D:\Development\SVN\Releases\TortoiseSVN-1.7.11\ext\subversion\subversion\libsvn_subr\token.c'
>
> line 51: internal malfunction
>
> ---------------------------
>
> OK
>
> ---------------------------
>

-- 
C. Michael Pilato <cmpilato_at_collab.net>
CollabNet   <>   www.collab.net   <>   Enterprise Cloud Development

Received on 2013-03-14 14:54:08 CET

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.