* [PATCH] location-functions.pl: Remove accidently keept 2nd DB init call.
@ 2020-12-02 14:04 Stefan Schantl
0 siblings, 0 replies; only message in thread
From: Stefan Schantl @ 2020-12-02 14:04 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 999 bytes --]
The get_full_country_name() function had an accidenlty and not longer
required call of the DB init function.
This is a waste of memory and a known problem, especially on systems
with less than 1GB of RAM, where the application which uses libloc in
such a redundant way crashes.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
config/cfgroot/location-functions.pl | 3 ---
1 file changed, 3 deletions(-)
diff --git a/config/cfgroot/location-functions.pl b/config/cfgroot/location-functions.pl
index b7465c5ef..fb97eb589 100644
--- a/config/cfgroot/location-functions.pl
+++ b/config/cfgroot/location-functions.pl
@@ -163,9 +163,6 @@ sub get_full_country_name($) {
# Grab location name from hash.
$name = $not_iso_3166_location{$code};
} else {
- # Init libloc database connection.
- my $db_handle = &init();
-
# Get the country name by using the location module.
$name = &Location::get_country_name($db_handle, $code);
}
--
2.20.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2020-12-02 14:04 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-02 14:04 [PATCH] location-functions.pl: Remove accidently keept 2nd DB init call Stefan Schantl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox