diff options
| author | Kenichi Handa | 2006-02-06 12:36:25 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2006-02-06 12:36:25 +0000 |
| commit | 8b9d426ab7ec7ee74158f113675a788e580945b4 (patch) | |
| tree | 9778c48e803be13b0e61f0b26d79cf552c8d07b4 /src | |
| parent | ceb4c4d3039f5b70d0e49c343bce0bd36cfc1dc8 (diff) | |
| download | emacs-8b9d426ab7ec7ee74158f113675a788e580945b4.tar.gz emacs-8b9d426ab7ec7ee74158f113675a788e580945b4.zip | |
(openp): Initialized encoded_fn before GCPRO it.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/lread.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 166222ae33c..4ec15ab11cc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-02-06 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * lread.c (openp): Initialized encoded_fn before GCPRO it. | ||
| 4 | |||
| 1 | 2006-02-05 Ken Raeburn <raeburn@raeburn.org> | 5 | 2006-02-05 Ken Raeburn <raeburn@raeburn.org> |
| 2 | 6 | ||
| 3 | * editfns.c (Fconstrain_to_field): Fix int/Lisp_Object mixup. | 7 | * editfns.c (Fconstrain_to_field): Fix int/Lisp_Object mixup. |
diff --git a/src/lread.c b/src/lread.c index 7be2ad8fa9b..acdefd81bae 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -1079,7 +1079,7 @@ openp (path, str, suffixes, storeptr, predicate) | |||
| 1079 | SBYTES (XCAR (tail))); | 1079 | SBYTES (XCAR (tail))); |
| 1080 | } | 1080 | } |
| 1081 | 1081 | ||
| 1082 | string = filename = Qnil; | 1082 | string = filename = encoded_fn = Qnil; |
| 1083 | GCPRO6 (str, string, filename, path, suffixes, encoded_fn); | 1083 | GCPRO6 (str, string, filename, path, suffixes, encoded_fn); |
| 1084 | 1084 | ||
| 1085 | if (storeptr) | 1085 | if (storeptr) |