diff options
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c index 49c3dd834ba..605a5f43af7 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -1049,7 +1049,10 @@ wrong_choice (Lisp_Object choice, Lisp_Object wrong) | |||
| 1049 | } | 1049 | } |
| 1050 | 1050 | ||
| 1051 | obj = Fconcat (i, args); | 1051 | obj = Fconcat (i, args); |
| 1052 | SAFE_FREE (); | 1052 | |
| 1053 | /* No need to call SAFE_FREE, since signaling does that for us. */ | ||
| 1054 | (void) sa_count; | ||
| 1055 | |||
| 1053 | xsignal2 (Qerror, obj, wrong); | 1056 | xsignal2 (Qerror, obj, wrong); |
| 1054 | } | 1057 | } |
| 1055 | 1058 | ||