Skip to content

Commit 540951d

Browse files
committed
Version 2.3.1
Remove the DETACHED_PROCESS flag. Gut feeling: this may be triggering a/v software
1 parent 2570b95 commit 540951d

3 files changed

Lines changed: 2 additions & 5 deletions

File tree

src/droidcam.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
1 VERSIONINFO
2-
FILEVERSION 2,3,0,0
2+
FILEVERSION 2,3,1,0
33
BEGIN
44
BLOCK "StringFileInfo"
55
BEGIN

src/source.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ extern QMainWindow *main_window;
3838
#include "buffer_util.h"
3939
#include "device_discovery.h"
4040

41-
#define PLUGIN_VERSION_STR "230"
41+
#define PLUGIN_VERSION_STR "231"
4242
#define FPS 25
4343
#define MILLI_SEC 1000
4444
#define NANO_SEC 1000000000

src/sys/win/cmd.cc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,6 @@ cmd_execute(const char *path, const char *const argv[], HANDLE *handle, char* ou
5656
si.hStdOutput = hChildStd_OUT_Wr;
5757
si.dwFlags |= STARTF_USESTDHANDLES;
5858
}
59-
else {
60-
flags |= DETACHED_PROCESS;
61-
}
6259

6360
char cmd[256];
6461
argv_to_string(argv, cmd, sizeof(cmd));

0 commit comments

Comments
 (0)