[ 
https://issues.apache.org/jira/browse/ZOOKEEPER-3006?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16413291#comment-16413291
 ] 

ASF GitHub Bot commented on ZOOKEEPER-3006:
-------------------------------------------

Github user eribeiro commented on the issue:

    https://github.com/apache/zookeeper/pull/493
  
    Hi @hanm,
    
    Excuse me for the mess up and subsequent confusion. @edwardoliveira is me, 
@eribeiro (on GH and JIRA), but I inadvertedly opened the PR using my second GH 
account. :(
    
    My e-mail is [email protected]
    
    If you prefer, I may close this PR and open a new PR from my main account. 
The referenced branch comes from the right account, already.
    
    I have already assigned the issue to myself, btw. 
    
    Cheers!


> Potential NPE in ZKDatabase#calculateTxnLogSizeLimit
> ----------------------------------------------------
>
>                 Key: ZOOKEEPER-3006
>                 URL: https://issues.apache.org/jira/browse/ZOOKEEPER-3006
>             Project: ZooKeeper
>          Issue Type: Bug
>    Affects Versions: 3.6.0
>            Reporter: lujie
>            Assignee: Edward Ribeiro
>            Priority: Major
>
> I have found a potential NPE in ZKDatabase#calculateTxnLogSizeLimit:
>  
> {code:java}
> //ZKDatabase
> public long calculateTxnLogSizeLimit() {
> long snapSize = 0;
> try {
> snapSize = snapLog.findMostRecentSnapshot().length();
> } catch (IOException e) {
> LOG.error("Unable to get size of most recent snapshot");
> }
> return (long) (snapSize * snapshotSizeFactor);
> }
> {code}
>  in FileTxnSnapLog#findMostRecentSnapshot(), it will return the result of  
> FileSnap#findMostRecentSnapshot:
> {code:java}
> // called by FileTxnSnapLog#findMostRecentSnapshot()
> public File findMostRecentSnapshot() throws IOException {
> List<File> files = findNValidSnapshots(1);
> if (files.size() == 0) {
> return null;
> }
> return files.get(0);
> }
> {code}
> So it will return null when the files sizes is 0, but 
> ZKDatabase#calculateTxnLogSizeLimit has no null checker
>  
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to