Skip to content

Commit

Permalink
Fix a possible unitialized value issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Li Song committed Apr 15, 2017
1 parent 24940c9 commit a2624ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Reads.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class Reads
char seq[MAX_READ_LENGTH] ;
char qual[MAX_READ_LENGTH] ;

Reads(): fpUsed(0), currentFpInd(0)
Reads(): fpUsed(0), currentFpInd(0), discard( false )
{
compressLevel = 1 ;
strcpy( outputDirectory, "./" ) ;
Expand Down

0 comments on commit a2624ec

Please sign in to comment.