Skip to content

Commit

Permalink
Merge pull request #57 from ntrost57/develop
Browse files Browse the repository at this point in the history
 fixed uninitialized pointers
  • Loading branch information
ntrost57 authored Sep 25, 2018
2 parents 46d74cc + 4ccdbb7 commit 26fb4dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/src/include/handle.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ struct _rocsparse_handle
// logging streams
std::ofstream log_trace_ofs;
std::ofstream log_bench_ofs;
std::ostream* log_trace_os;
std::ostream* log_bench_os;
std::ostream* log_trace_os = nullptr;
std::ostream* log_bench_os = nullptr;
};

/********************************************************************************
Expand Down

0 comments on commit 26fb4dc

Please sign in to comment.