summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2013-04-28 13:36:51 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2013-04-28 13:36:51 +0200
commitb897909468a6f303dc3feb91612fb5bcc3f1c37d (patch)
tree4ce1be7f7c56011ea6663adba39bc236dde6602e /Bugzilla/DB
parent816aadbdb4450c26d7a2914b4f4e733be0132af8 (diff)
downloadbugzilla-b897909468a6f303dc3feb91612fb5bcc3f1c37d.tar.gz
bugzilla-b897909468a6f303dc3feb91612fb5bcc3f1c37d.tar.xz
Bug 858909: When running checksetup.pl for the first time using Oracle as DB server, you get an "uninitialized value" warning
r=dkl a=LpSolit
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r--Bugzilla/DB/Oracle.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/DB/Oracle.pm b/Bugzilla/DB/Oracle.pm
index e9ee44f5e..68aa3fa93 100644
--- a/Bugzilla/DB/Oracle.pm
+++ b/Bugzilla/DB/Oracle.pm
@@ -60,7 +60,7 @@ sub new {
my $dsn = "dbi:Oracle:host=$host;sid=$dbname";
$dsn .= ";port=$port" if $port;
my $attrs = { FetchHashKeyName => 'NAME_lc',
- LongReadLen => max(Bugzilla->params->{'maxattachmentsize'},
+ LongReadLen => max(Bugzilla->params->{'maxattachmentsize'} || 0,
MIN_LONG_READ_LEN) * 1024,
};
my $self = $class->db_new({ dsn => $dsn, user => $user,