diff options
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index 514810b83fa..42a53276bc8 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -3163,7 +3163,9 @@ cleanup_vector (struct Lisp_Vector *vector) | |||
| 3163 | PSEUDOVEC_STRUCT (vector, Lisp_Subr); | 3163 | PSEUDOVEC_STRUCT (vector, Lisp_Subr); |
| 3164 | if (!NILP (subr->native_comp_u[0])) | 3164 | if (!NILP (subr->native_comp_u[0])) |
| 3165 | { | 3165 | { |
| 3166 | xfree (subr->symbol_name); | 3166 | /* FIXME Alternative and non invasive solution to this |
| 3167 | cast? */ | ||
| 3168 | xfree ((char *)subr->symbol_name); | ||
| 3167 | xfree (subr->native_c_name[0]); | 3169 | xfree (subr->native_c_name[0]); |
| 3168 | } | 3170 | } |
| 3169 | } | 3171 | } |