Skip to content

Commit

Permalink
Apply Stas's mg_get patch and document Jeff's in Changes
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.perl.org/modules/dbi/trunk@969 50811bd7-b8ce-0310-adc1-d9db26280581
  • Loading branch information
timbunce committed Apr 10, 2005
1 parent 0810e02 commit 24dc02e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ DBI::Changes - List of significant changes to the DBI

Fixed croak() in DBD::NullP thanks to Sergey Skvortsov.
Fixed handling of take_imp_data() and dbi_imp_data attribute.
Fixed bugs in DBD::DBM thanks to Jeff Zucker.

Changed warning about multiple copies of Driver.xst found in @INC
to ignore duplicated directories thanks to Ed Avis.
Expand Down
2 changes: 2 additions & 0 deletions DBI.xs
Original file line number Diff line number Diff line change
Expand Up @@ -993,6 +993,8 @@ dbih_setup_handle(SV *orv, char *imp_class, SV *parent, SV *imp_datasv)

if ((svp = hv_fetch((HV*)SvRV(h), "dbi_imp_data", 12, 0))) {
dbi_imp_data = *svp;
if (SvGMAGICAL(dbi_imp_data)) /* call FETCH via magic */
mg_get(dbi_imp_data);
}

DBI_LOCK;
Expand Down

0 comments on commit 24dc02e

Please sign in to comment.