I had a file such as
digraph eatmemory { ... normalname -> kupé ... }
which caused dot to run forever eating memory until I killed it with 1.7 GB allocated memory. Removing or quoting the line with the é made everything go fine.
Input:
Fix:
digraph susning {
normalname -> kupé
}
The lexer uses isalnum to gather tokens, but for the default locale,
non-ascii characters don't fall into any category. Added call to
setlocale.
Owner: erg
Status: Fixed (7 Feb 2002)