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.


fixing the error in geekos' memcmp implementation
[palacios.git] / geekos / src / common / string.c
index 41f4b8a..8f9ce12 100644 (file)
@@ -65,6 +65,7 @@ int memcmp(const void *s1_, const void *s2_, size_t n)
            return cmp;
        ++s1;
        ++s2;
+       --n;
     }
 
     return 0;