-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"free to wrong memory pool" using DBI, FetchHashKeyName and selectall_hashref #7447
Comments
From perl@glob.com.aumorning, i'm trying to track down a bug that we're experiencing in bugzilla. http://bugzilla.mozilla.org/show_bug.cgi?id=253696 on activestate perl (windows) build 510 when i connect to a mysql database specifying using
and run selectall_hashref() i get
my $dbh = DBI->connect(
"DBI:mysql:host=localhost;database=bugs;port=3306", '', '',
{ Username => 'bugs', Password => '', FetchHashKeyName => 'NAME_lc', }
) or die $!;
my $days_since_epoch = int(time() / (60 * 60 * 24));
my $serieses = $dbh->selectall_hashref("SELECT series_id, query, creator " .
"FROM series " .
"WHERE frequency != 0 AND " .
"($days_since_epoch + series_id) % frequency = 0",
"series_id"
); on activestate perl 5.8.2 build 808, it does not crash. nor does it crash if i set FetchHashKeyName to 'NAME' (or don't set it). Perl Info
|
From @steve-m-hayIs there any chance you could upgrade to DBI-1.45 and try this again? One of the items in the Changes file for that release is: - Fixed "Free to wrong pool"/"Attempt to free unreferenced scalar" in FETCH. so the bug may well be fixed now. |
The RT System itself - Status changed from 'new' to 'open' |
From guest@guest.guest.xxxxxxxxsorry, the bug persists: H:\perl>perl -v This is perl, v5.8.4 built for MSWin32-x86-multi-thread H:\perl>ppm query dbi H:\perl>perl bug30933.pl H:\perl>grep DBI::VERSION D:/Perl/site/lib/DBI.pm |
This comment has been minimized.
This comment has been minimized.
From @jochenwOn Mo. 02. Aug. 2004, 19:21:13, perl@glob.com.au wrote:
Is this reproducable with a less ancient version of ActiveState Perl, or Jochen |
mozilla worked around this by doing: Index: Bugzilla/DB.pm
===================================================================
RCS file: /cvsroot/mozilla/webtools/bugzilla/Bugzilla/DB.pm,v
retrieving revision 1.12
diff -u -r1.12 DB.pm
--- Bugzilla/DB.pm 10 Jul 2004 07:35:35 -0000 1.12
+++ Bugzilla/DB.pm 8 Sep 2004 12:47:06 -0000
@@ -152,8 +152,10 @@
Password => $db_pass,
ShowErrorStatement => 1,
HandleError => \&_handle_error,
- FetchHashKeyName => 'NAME_lc',
TaintIn => 1,
+ FetchHashKeyName => 'NAME',
+ # Note: NAME_lc causes crash on ActiveState Perl
+ # 5.8.4 (see Bug 253696)
});
return $dbh; |
Given no response I'm closing this for now. |
Migrated from rt.perl.org#30933 (status was 'open')
Searchable as RT30933$
The text was updated successfully, but these errors were encountered: