Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B5E121040A for ; Tue, 5 Nov 2013 08:32:18 +0000 (UTC) Received: (qmail 20873 invoked by uid 500); 5 Nov 2013 08:32:18 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 20843 invoked by uid 500); 5 Nov 2013 08:32:18 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 20835 invoked by uid 99); 5 Nov 2013 08:32:18 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Nov 2013 08:32:18 +0000 Date: Tue, 5 Nov 2013 08:32:17 +0000 (UTC) From: "He Liangliang (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (HBASE-9893) Incorrect assert condition in OrderedBytes decoding MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HBASE-9893?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] He Liangliang updated HBASE-9893: --------------------------------- Description: The following assert condition is incorrect when decoding blob var byte array. {code} assert t == 0 : "Unexpected bits remaining after decoding blob."; {code} When the number of bytes to decode is multiples of 8 (i.e the original number of bytes is multiples of 7), this assert may fail. was: The following assert condition is incorrect when decoding blob var byte array. assert t == 0 : "Unexpected bits remaining after decoding blob."; When the number of bytes to decode is multiples of 8 (i.e the original number of bytes is multiples of 7), this assert may fail. > Incorrect assert condition in OrderedBytes decoding > --------------------------------------------------- > > Key: HBASE-9893 > URL: https://issues.apache.org/jira/browse/HBASE-9893 > Project: HBase > Issue Type: Bug > Components: Client > Affects Versions: 0.96.0 > Reporter: He Liangliang > Assignee: He Liangliang > Priority: Minor > > The following assert condition is incorrect when decoding blob var byte array. > {code} > assert t == 0 : "Unexpected bits remaining after decoding blob."; > {code} > When the number of bytes to decode is multiples of 8 (i.e the original number of bytes is multiples of 7), this assert may fail. -- This message was sent by Atlassian JIRA (v6.1#6144)