summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB
diff options
context:
space:
mode:
authorbugzilla%glob.com.au <>2005-05-06 23:16:54 +0200
committerbugzilla%glob.com.au <>2005-05-06 23:16:54 +0200
commit33993daf6e2e336cfa08cb20827d017702c0ab32 (patch)
tree9a61d6c0dee64e4a769695a32bb1046d4206c15e /Bugzilla/DB
parentd320ac0ee8de76512a87f5cbcf08350ae4ecc652 (diff)
downloadbugzilla-33993daf6e2e336cfa08cb20827d017702c0ab32.tar.gz
bugzilla-33993daf6e2e336cfa08cb20827d017702c0ab32.tar.xz
Bug 292821: "Attempt to free unreferenced scalar" running checksetup
Patch By Byron Jones <bugzilla@glob.com.au> r=mkanat,r=vladd,a=justdave
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r--Bugzilla/DB/Mysql.pm8
1 files changed, 6 insertions, 2 deletions
diff --git a/Bugzilla/DB/Mysql.pm b/Bugzilla/DB/Mysql.pm
index 2ca0f52e6..17c3d6b9e 100644
--- a/Bugzilla/DB/Mysql.pm
+++ b/Bugzilla/DB/Mysql.pm
@@ -492,8 +492,12 @@ sub bz_column_info_real {
# so we have to get all the columns on the table and find
# the one we want.
my $info_sth = $self->column_info(undef, undef, $table, '%');
- my $all_cols = $info_sth->fetchall_hashref("COLUMN_NAME");
- my $col_data = $all_cols->{$column};
+
+ # Don't use fetchall_hashref as there's a Win32 DBI bug (292821)
+ my $col_data;
+ while ($col_data = $info_sth->fetchrow_hashref) {
+ last if $col_data->{'COLUMN_NAME'} eq $column;
+ }
if (!defined $col_data) {
return undef;