]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/fg_io.cxx
changes matching those of generic.?xx
[flightgear.git] / src / Main / fg_io.cxx
index a2260731e468ea44d712daa5a1a524a04dcaeaa4..7d904d6f9b4bb04e1234d2058cd3e5f86eb4ccb7 100644 (file)
@@ -188,13 +188,20 @@ FGIO::parse_port_config( const string& config )
            io = rul;
         } else if ( protocol == "generic" ) {
             int configToken;
-            if (tokens[1] == "socket")
+            if (tokens[1] == "socket") {
                 configToken = 7;
-            else if (tokens[1] == "file")
+            } else if (tokens[1] == "file") {
                 configToken = 5;
-            else
+            } else {
                 configToken = 6;
-            FGGeneric *generic = new FGGeneric( tokens[configToken] );
+            }
+
+            if (configToken >= tokens.size()) {
+                SG_LOG( SG_IO, SG_ALERT, "Not enough tokens passed for the generic protocol.");
+                return NULL;
+            }
+
+            FGGeneric *generic = new FGGeneric( tokens );
             io = generic;
        } else if ( protocol == "multiplay" ) {
            if ( tokens.size() != 5 ) {