Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
05b7b65b
Commit
05b7b65b
authored
Jul 05, 2017
by
Leigh B Stoller
Browse files
Add DESTROY method, newer version of perl was unhappy without it.
Also a mysql 5.7 fixup.
parent
bbc0b644
Changes
1
Hide whitespace changes
Inline
Side-by-side
apt/APT_Profile.pm.in
View file @
05b7b65b
...
...
@@ -1887,7 +1887,7 @@ sub FindProfilesUsing($$)
}
my
$
query_result
=
DBQueryWarn
(
"select distinct profileid,version "
.
DBQueryWarn
(
"select distinct profileid,version
,name
"
.
" from apt_profile_images "
.
"where image=$safe_urn "
.
"order by name,version"
);
...
...
@@ -1947,5 +1947,11 @@ AUTOLOAD {
return
undef
;
}
sub
DESTROY
{
my
$
self
=
shift
;
$
self
->{
'DBROW'
}
=
undef
;
}
#
_Always_
make
sure
that
this
1
is
at
the
end
of
the
file
...
1
;
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment