summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-05-03 14:53:52 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-05-03 14:53:52 +0300
commit32c9c9eda7750422049fa62b35b39838ee4dd679 (patch)
treec33a35846ab0fae345053f110332584f186ce5be /src
parent808ca2028981247bf697b8df5902ffe7c3e50b3f (diff)
App: Wait for `xdg-open` child processes to terminate
IssueID #260
Diffstat (limited to 'src')
-rw-r--r--src/app.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/app.c b/src/app.c
index ef130770..9762961a 100644
--- a/src/app.c
+++ b/src/app.c
@@ -2381,6 +2381,7 @@ void openInDefaultBrowser_App(const iString *url) {
2381#endif 2381#endif
2382 ); 2382 );
2383 start_Process(proc); 2383 start_Process(proc);
2384 waitForFinished_Process(proc); /* TODO: test on Windows */
2384 iRelease(proc); 2385 iRelease(proc);
2385#endif 2386#endif
2386} 2387}