pike.git/
src/
main.c
Branch:
Tag:
Non-build tags
All tags
No tags
2014-08-23
2014-08-23 14:54:46 by Martin Nilsson <nilsson@opera.com>
e828ed2d981fd93e62d3c46051f39ad29dc82a37 (
3
lines) (+
2
/-
1
)
[
Show
|
Annotate
]
Branch:
8.0
Fixed warning.
97:
static void set_master(const char *file) { if( master_file_location != _master_location+CONSTANT_STRLEN(MASTER_COOKIE))
-
free(master_file_location);
+
free(
(void*)
master_file_location);
#undef strdup /* We can't use dmalloc strdup before pike_memory is initialized. */ master_file_location = strdup( file ); }