Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
33993daf
Commit
33993daf
authored
May 06, 2005
by
bugzilla%glob.com.au
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 292821: "Attempt to free unreferenced scalar" running checksetup
Patch By Byron Jones <bugzilla@glob.com.au> r=mkanat,r=vladd,a=justdave
parent
d320ac0e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
Mysql.pm
Bugzilla/DB/Mysql.pm
+6
-2
No files found.
Bugzilla/DB/Mysql.pm
View file @
33993daf
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment