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.


Fix for option processing
Patrick G. Bridges [Wed, 20 Feb 2013 23:56:50 +0000 (16:56 -0700)]
palacios/src/palacios/vmm_options.c

index 82f12d9..23b024e 100644 (file)
@@ -52,6 +52,9 @@ void v3_parse_options(char *options)
     int parseKey = 1;
     int len;
     char *c;
+
+    option_table = v3_create_htable(0, option_hash_fn, option_eq_fn);
+
     if (!options) {
        return; 
     }
@@ -61,7 +64,6 @@ void v3_parse_options(char *options)
     strcpy(option_storage, options);
     c = option_storage;
 
-    option_table = v3_create_htable(0, option_hash_fn, option_eq_fn);
     while (c && *c) {
        /* Skip whitespace */
         if ((*c == ' ')