pike.git/
src/
builtin_functions.c
Branch:
Tag:
Non-build tags
All tags
No tags
2014-04-27
2014-04-27 18:31:29 by Martin Nilsson <nilsson@opera.com>
0ec752ef450dbf541fd9c208bd4e388e4a5efc1c (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
8.0
Free takes void* and doesn't need any cast anymore.
4064:
free_string(ctx->empty_repl); } }
-
free (
(char *)
ctx->v);
+
free (ctx->v);
ctx->v = NULL; } }
5178:
order = stable_sort_array_destructively(a); for(e=1;e<args;e++) order_array(Pike_sp[e-args].u.array,order); pop_n_elems(args-1);
-
free(
(char *)
order);
+
free(order);
} else { /* If there are only simple types in the array we can use unstable