Skip to content

Commit

Permalink
Version 2.3.1
Browse files Browse the repository at this point in the history
Remove the DETACHED_PROCESS flag.
Gut feeling: this may be triggering a/v software
  • Loading branch information
aramg committed Jan 23, 2024
1 parent 2570b95 commit 540951d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/droidcam.rc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
1 VERSIONINFO
FILEVERSION 2,3,0,0
FILEVERSION 2,3,1,0
BEGIN
BLOCK "StringFileInfo"
BEGIN
Expand Down
2 changes: 1 addition & 1 deletion src/source.cc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ extern QMainWindow *main_window;
#include "buffer_util.h"
#include "device_discovery.h"

#define PLUGIN_VERSION_STR "230"
#define PLUGIN_VERSION_STR "231"
#define FPS 25
#define MILLI_SEC 1000
#define NANO_SEC 1000000000
Expand Down
3 changes: 0 additions & 3 deletions src/sys/win/cmd.cc
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,6 @@ cmd_execute(const char *path, const char *const argv[], HANDLE *handle, char* ou
si.hStdOutput = hChildStd_OUT_Wr;
si.dwFlags |= STARTF_USESTDHANDLES;
}
else {
flags |= DETACHED_PROCESS;
}

char cmd[256];
argv_to_string(argv, cmd, sizeof(cmd));
Expand Down

0 comments on commit 540951d

Please sign in to comment.