Skip to content

Commit

Permalink
fix 67f7b3a
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Jul 20, 2017
1 parent 67f7b3a commit f78157b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/qgscrashdialog.cpp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ QString QgsCrashDialog::htmlToMarkdown( const QString &html )
markdown.replace( "<br>", "\n" ); markdown.replace( "<br>", "\n" );
markdown.replace( "<b>", "*" ); markdown.replace( "<b>", "*" );
markdown.replace( "</b>", "*" ); markdown.replace( "</b>", "*" );
markdown.replace( "QGIS code revision: ", "QGIS code revision: commit:"); markdown.replace( "QGIS code revision: ", "QGIS code revision: commit:" );
return markdown; return markdown;
} }


4 changes: 2 additions & 2 deletions src/core/qgsstacktrace.cpp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ QVector<QgsStackTrace::StackLine> QgsStackTrace::trace( _EXCEPTION_POINTERS *Exc
// StackWalk64() may modify context record passed to it, so we will // StackWalk64() may modify context record passed to it, so we will
// use a copy. // use a copy.
CONTEXT context_record; CONTEXT context_record;
if (ExceptionInfo) if ( ExceptionInfo )
context_record = *ExceptionInfo->ContextRecord; context_record = *ExceptionInfo->ContextRecord;
else else
RtlCaptureContext(&context_record); RtlCaptureContext( &context_record );


// Initialize stack walking. // Initialize stack walking.
STACKFRAME64 stack_frame; STACKFRAME64 stack_frame;
Expand Down

0 comments on commit f78157b

Please sign in to comment.