Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


arg length bugfix in v3_stream
Kyle Hale [Mon, 6 Jan 2014 17:46:28 +0000 (11:46 -0600)]
linux_usr/v3_stream.c

index c2cb815..69afdd0 100644 (file)
@@ -209,7 +209,7 @@ int main(int argc, char* argv[])
     exit(-1);
   }
 
-  memcpy(stream, argv[argstart+1], strlen(argv[argstart+1]));
+  memcpy(stream, argv[argstart+1], strlen(argv[argstart+1])+1);
   
   vm_fd = open(vm_dev, O_RDONLY);