summaryrefslogtreecommitdiff
path: root/lib/inets/vsn.mk
diff options
context:
space:
mode:
authorMicael Karlberg <bmk@erlang.org>2010-04-30 12:00:00 +0200
committerBjörn Gustavsson <bjorn@erlang.org>2010-08-20 08:52:37 +0200
commit6c8fb0bf44f74e9fc82f64949aba0bae8309fc88 (patch)
treeb9a743a450ac4dfdc7d4acb25be2b8449551f8be /lib/inets/vsn.mk
parentd35dc5f707f307300665c7da2ae3092d0baa9bdd (diff)
downloaderlang-6c8fb0bf44f74e9fc82f64949aba0bae8309fc88.tar.gz
inets: Patch 1115
OTP-8542 [httpc] Memory leak plugged. The profile manager never cleaned up in its handler database. This meant that with each new request handler, another entry was created that was never deleted. Eventually the request id counter (used as a key) would wrap, but the machine would most likely run out of memory before that happened. OTP-8607 [httpc] https requests with default port not handled properly. Jebu Ittiachen.
Diffstat (limited to 'lib/inets/vsn.mk')
-rw-r--r--lib/inets/vsn.mk8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/inets/vsn.mk b/lib/inets/vsn.mk
index 401bf4d37d..7776bef0a5 100644
--- a/lib/inets/vsn.mk
+++ b/lib/inets/vsn.mk
@@ -18,11 +18,15 @@
# %CopyrightEnd%
APPLICATION = inets
-INETS_VSN = 5.3.1
+INETS_VSN = 5.3.2
PRE_VSN =
APP_VSN = "$(APPLICATION)-$(INETS_VSN)$(PRE_VSN)"
-TICKETS = OTP-8508 OTP-8509
+TICKETS = OTP-8542 OTP-8607
+
+TICKETS_5_3_1 = \
+ OTP-8508 \
+ OTP-8509
TICKETS_5_3 = \
OTP-8016 \