1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

DBD-SQLite: 36_hooks.t even segfaults under Solaris + perl 5.8. From what I've seen and tested, I guess it segfaults with perl 5.8, and it doesn't with perl 5.10. DBI version doesn't matter.

This commit is contained in:
Kenichi Ishigaki 2009-07-21 14:38:13 +00:00
parent 1d6d87ffc1
commit 80bd5e10a0

View file

@ -112,7 +112,7 @@ foreach my $call_func (@CALL_FUNCS) {
: DBD::SQLite::OK;
return $retval;
};
unless ($^O =~ /MSWin32|freebsd/) {
unless ($] < 5.010) {
# FIXME: this line may cause segfalut
$dbh->$call_func($authorizer, "set_authorizer");
}