File tree 2 files changed +8
-9
lines changed
2 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -190,12 +190,11 @@ bool taint_do_security_scan(
190
190
const boost::filesystem::path results_dir =
191
191
config.get_slicer_root_directory ();
192
192
193
- const auto ignore = std::system ((
194
- std::string (" dot -Tsvg \" " ) +
195
- (results_dir / " propagation_chains.dot" ).native () +
196
- " \" -o \" " +
197
- (results_dir / " propagation_chains.svg" ).native () +
198
- " \" " ).c_str ());
193
+ const auto ignore = std::system (
194
+ (std::string (" dot -Tsvg \" " ) +
195
+ (results_dir / " propagation_chains.dot" ).native () + " \" -o \" " +
196
+ (results_dir / " propagation_chains.svg" ).native () + " \" " )
197
+ .c_str ());
199
198
(void )ignore; // We do not care about the return value, because
200
199
// if the call fails, then the link to the SVG
201
200
// image in the debug HTML output won't work.
Original file line number Diff line number Diff line change @@ -504,10 +504,10 @@ void to_dot(
504
504
const taint_propagation_chainst &chains,
505
505
const std::string &dot_file_pathname)
506
506
{
507
- std::fstream ostr (dot_file_pathname, std::ios_base::out);
508
- if (!ostr.is_open ())
507
+ std::fstream ostr (dot_file_pathname, std::ios_base::out);
508
+ if (!ostr.is_open ())
509
509
return ;
510
- to_dot (chains,ostr);
510
+ to_dot (chains, ostr);
511
511
}
512
512
513
513
std::ostream &operator <<(std::ostream &ostr, const argidx_and_tokennamet &atp)
You can’t perform that action at this time.
0 commit comments