File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -226,7 +226,9 @@ static void dumpBacktrace( unsigned int depth )
226
226
227
227
// stdin from pipe
228
228
if ( dup ( fd[0 ] ) != STDIN_FILENO )
229
+ {
229
230
QgsDebugMsg ( " dup to stdin failed" );
231
+ }
230
232
231
233
close ( fd[1 ] ); // close writing end
232
234
execl ( " /usr/bin/c++filt" , " c++filt" , ( char * ) 0 );
@@ -241,7 +243,9 @@ static void dumpBacktrace( unsigned int depth )
241
243
242
244
// stderr to pipe
243
245
if ( dup ( fd[1 ] ) != STDERR_FILENO )
246
+ {
244
247
QgsDebugMsg ( " dup to stderr failed" );
248
+ }
245
249
246
250
close ( fd[1 ] ); // close duped pipe
247
251
}
@@ -255,7 +259,9 @@ static void dumpBacktrace( unsigned int depth )
255
259
int status;
256
260
close ( STDERR_FILENO );
257
261
if ( dup ( stderr_fd ) != STDERR_FILENO )
262
+ {
258
263
QgsDebugMsg ( " dup to stderr failed" );
264
+ }
259
265
close ( stderr_fd );
260
266
wait ( &status );
261
267
}
Original file line number Diff line number Diff line change @@ -90,4 +90,4 @@ ENDMACRO (ADD_QGIS_TEST)
90
90
#############################################################
91
91
# Tests:
92
92
93
- ADD_QGIS_TEST(qgisappclippboard testqgisappclipboard.cpp)
93
+ ADD_QGIS_TEST(qgisappclipboard testqgisappclipboard.cpp)
You can’t perform that action at this time.
0 commit comments