Comment 1 for bug 1186601

Revision history for this message
Cris Dywan (kalikiana) wrote :

The problem seems to be this pattern. Older Vala versions don't deal with re-using variable names very well.

try {
    …
    var browser
    …
catch () {
    var browser
    …
}