Return-Path: X-Original-To: apmail-hc-dev-archive@www.apache.org Delivered-To: apmail-hc-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9F62C7214 for ; Wed, 21 Dec 2011 18:55:55 +0000 (UTC) Received: (qmail 458 invoked by uid 500); 21 Dec 2011 18:55:55 -0000 Delivered-To: apmail-hc-dev-archive@hc.apache.org Received: (qmail 404 invoked by uid 500); 21 Dec 2011 18:55:55 -0000 Mailing-List: contact dev-help@hc.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "HttpComponents Project" Delivered-To: mailing list dev@hc.apache.org Received: (qmail 396 invoked by uid 99); 21 Dec 2011 18:55:55 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Dec 2011 18:55:55 +0000 X-ASF-Spam-Status: No, hits=-2002.5 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Dec 2011 18:55:53 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 71C7A11F04C for ; Wed, 21 Dec 2011 18:55:31 +0000 (UTC) Date: Wed, 21 Dec 2011 18:55:31 +0000 (UTC) From: "Jon Moore (Reopened) (JIRA)" To: dev@hc.apache.org Message-ID: <1839130522.36476.1324493731467.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <2091560635.32146.1324409311146.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Reopened] (HTTPCLIENT-1152) org.apache.http.impl.client.cache.memcached.MemcachedHttpCacheStorage should verify class of returned object before casting MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HTTPCLIENT-1152?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jon Moore reopened HTTPCLIENT-1152: ----------------------------------- I'm actually going to reopen this, as I think it's a pretty small change that adds to the robustness of the library (and I'll work on integrating and committing it). Upon encountering something weird coming back out of memcached, I think logging a warning and then acting as if it were a cache miss is good and prudent behavior. > org.apache.http.impl.client.cache.memcached.MemcachedHttpCacheStorage should verify class of returned object before casting > --------------------------------------------------------------------------------------------------------------------------- > > Key: HTTPCLIENT-1152 > URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1152 > Project: HttpComponents HttpClient > Issue Type: Bug > Components: Cache, HttpClient > Affects Versions: 4.1.1 > Reporter: Clinton Nielsen > Assignee: Jon Moore > Attachments: HTTPCLIENT-1152.patch > > > org.apache.http.impl.client.cache.memcached.MemcachedHttpCacheStorage > Original (in getEntry function): > byte[] data = (byte[]) client.get(url); > Should be: > Object obj= client.get(url); > if (null == obj || !(objinstanceof byte[])) { > return null; > } > byte[] data = (byte[])obj; > Original (in updateEntry function): > byte[] oldBytes = (v != null) ? (byte[]) v.getValue() : null; > Should be: > byte[] oldBytes = (v != null && (v.getValue() instanceof byte[])) ? (byte[]) v.getValue() : null; > -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@hc.apache.org For additional commands, e-mail: dev-help@hc.apache.org