aboutsummaryrefslogtreecommitdiff
path: root/devel/smv/files/patch-hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'devel/smv/files/patch-hash.c')
-rw-r--r--devel/smv/files/patch-hash.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/devel/smv/files/patch-hash.c b/devel/smv/files/patch-hash.c
new file mode 100644
index 000000000000..006e32a1c5b1
--- /dev/null
+++ b/devel/smv/files/patch-hash.c
@@ -0,0 +1,17 @@
+--- hash.c
++++ hash.c
+@@ -7,12 +7,12 @@
+ int (*hash_fun)(),(*eq_fun)();
+ mgr_ptr mgr;
+ {
+- hash_ptr res = (hash_ptr)malloc(sizeof(struct hash));
++ hash_ptr res = (hash_ptr)smv_malloc(sizeof(struct hash));
+ res->size = init_size;
+ res->hash_fun = hash_fun;
+ res->eq_fun = eq_fun;
+ res->mgr = mgr;
+- res->tab = (rec_ptr *)malloc(init_size * sizeof(rec_ptr));
++ res->tab = (rec_ptr *)smv_malloc(init_size * sizeof(rec_ptr));
+ bzero(res->tab,init_size * sizeof(rec_ptr));
+ return(res);
+ }