[Scummvm-git-logs] scummvm master -> 39c2477fbe2e33e55e2123a51aa79d26bb7ac919

sev- sev at scummvm.org
Thu May 24 01:08:31 CEST 2018


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
39c2477fbe FULLPIPE: fix URI


Commit: 39c2477fbe2e33e55e2123a51aa79d26bb7ac919
    https://github.com/scummvm/scummvm/commit/39c2477fbe2e33e55e2123a51aa79d26bb7ac919
Author: Gabriel Corona (gabriel.corona at enst-bretagne.fr)
Date: 2018-05-24T01:08:28+02:00

Commit Message:
FULLPIPE: fix URI

The previous URI spawns many useless subshells on the POSIX backend
through (harmless) shell command injection.

Changed paths:
    engines/fullpipe/modal.cpp


diff --git a/engines/fullpipe/modal.cpp b/engines/fullpipe/modal.cpp
index 042f1fb..3fdb663 100644
--- a/engines/fullpipe/modal.cpp
+++ b/engines/fullpipe/modal.cpp
@@ -2395,7 +2395,7 @@ bool ModalDemo::init(int counterDiff) {
 	if (_clickedQuit == -1)
 		return true;
 
-	g_system->openUrl("http://www.amazon.de/EuroVideo-Bildprogramm-GmbH-Full-Pipe/dp/B003TO51YE/ref=sr_1_1?ie=UTF8&s=videogames&qid=1279207213&sr=8-1");
+	g_system->openUrl("http://www.amazon.de/EuroVideo-Bildprogramm-GmbH-Full-Pipe/dp/B003TO51YE/ref=sr_1_1");
 
 	g_fp->_gameContinue = false;
 





More information about the Scummvm-git-logs mailing list