Commit 2c10f5e2 authored by bbaetz%acm.org's avatar bbaetz%acm.org

Bug 189446 - Can't change product of a bug

r, a=justdave
parent 43fe2ebf
......@@ -97,7 +97,14 @@ sub FetchSQLData {
undef $_fetchahead;
return @result;
}
return $_current_sth->fetchrow_array;
# This is really really ugly, but its what we get for not doing
# error checking for 5 years. See bug 189446.
my @ret;
eval {
@ret = $_current_sth->fetchrow_array;
};
return @ret;
}
sub FetchOneColumn {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment