]> matita.cs.unibo.it Git - helm.git/blobdiff - matita/components/extlib/hExtlib.ml
On-going porting to lablgtk3
[helm.git] / matita / components / extlib / hExtlib.ml
index 0b13cd83e4566013b74ec3b18019c4d2e542482d..5761010531eca5fe6a0b40c57eee94c0d2a8daa7 100644 (file)
@@ -437,6 +437,7 @@ let mkdir path =
           Unix.mkdir path 0o755; chmod 0o2775 path 
         with 
         | Unix.Unix_error (Unix.EEXIST,_,_) -> ()
+        | Unix.Unix_error (Unix.EISDIR,_,_) -> () (* work-around for a bug in FreeBSD *)
         | Unix.Unix_error (e,_,_) -> 
             raise 
               (Failure 
@@ -459,12 +460,12 @@ let input_file fname =
 let input_all ic =
   let size = 10240 in
   let buf = Buffer.create size in
-  let s = String.create size in
+  let s = Bytes.create size in
   (try
     while true do
       let bytes = input ic s 0 size in
       if bytes = 0 then raise End_of_file
-      else Buffer.add_substring buf s 0 bytes
+      else Buffer.add_subbytes buf s 0 bytes
     done
   with End_of_file -> ());
   Buffer.contents buf