Nested-Conditionals Bug
Lawrence D'Oliveiro <ldo-kC51rjc0cqs1dNLGKZg6taU/[email protected]>
| Newsgroups | gmane.comp.multimedia.dvdauthor.user |
|---|---|
| Message-ID | <[email protected]> |
I found a bug in the optimizer for VM instructions, which incorrectly
handled situations like this:
if (g0 eq 1)
{
if (g2 eq 2)
{
g3 = 4;
}
}
Basically the second conditional test would get lost, and dvdunauthor’s
decompilation would show that the code had been mangled into
if (g0 == 1)
{
g3 = 4;
}
I have done a fix for this.
------------------------------------------------------------------------------
_______________________________________________
Dvdauthor-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/dvdauthor-users