diff options
author | Micael Karlberg <[email protected]> | 2010-04-30 12:00:00 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-08-20 08:52:37 +0200 |
commit | 6c8fb0bf44f74e9fc82f64949aba0bae8309fc88 (patch) | |
tree | b9a743a450ac4dfdc7d4acb25be2b8449551f8be /lib/inets/vsn.mk | |
parent | d35dc5f707f307300665c7da2ae3092d0baa9bdd (diff) | |
download | otp-6c8fb0bf44f74e9fc82f64949aba0bae8309fc88.tar.gz otp-6c8fb0bf44f74e9fc82f64949aba0bae8309fc88.tar.bz2 otp-6c8fb0bf44f74e9fc82f64949aba0bae8309fc88.zip |
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.mk | 8 |
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 \ |