File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1+ ## 2.4.24.1
2+
3+ ### Changes
4+ - fix for dx_get_js_snapshots preventing crash
5+
16## 2.4.24
27
38### Added
Original file line number Diff line number Diff line change 237237 } else {
238238 $snapsize = $snapshot_sizes {$snapref };
239239 }
240- $parentname = $databases -> getDB($snapshots -> getSnapshotContainer($snapref ))-> getName();
240+ my $parentdbobj = $databases -> getDB($snapshots -> getSnapshotContainer($snapref ));
241+ if (defined ($parentdbobj )) {
242+ $parentname = $parentdbobj -> getName();
243+ } else {
244+ $parentname = ' N/A' ;
245+ }
241246 }
242247
243248 if (defined ($operation_for_conttf )) {
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ use File::Spec;
2929
3030use lib ' ../lib' ;
3131
32- our $version = ' 2.4.24' ;
32+ our $version = ' 2.4.24.1 ' ;
3333
3434my $tz = new Date::Manip::TZ;
3535my $dt = new Date::Manip::Date;
You can’t perform that action at this time.
0 commit comments