projects
/
pspp-builds.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da5e3e3
)
Avoid assertion failure pasting from a dictionary with foreign encoding.
author
John Darrington
<john@darrington.wattle.id.au>
Tue, 14 Aug 2007 06:22:38 +0000
(06:22 +0000)
committer
John Darrington
<john@darrington.wattle.id.au>
Tue, 14 Aug 2007 06:22:38 +0000
(06:22 +0000)
src/data/dictionary.c
patch
|
blob
|
history
diff --git
a/src/data/dictionary.c
b/src/data/dictionary.c
index f3c76c6e6d25bdf1c67b2796c2934295ee5be881..155d4bf4328501f07c7f7bebcfabb89883d3146a 100644
(file)
--- a/
src/data/dictionary.c
+++ b/
src/data/dictionary.c
@@
-386,7
+386,7
@@
dict_lookup_var (const struct dictionary *d, const char *name)
struct variable *target ;
struct variable *result ;
- if ( ! var_is_
valid
_name (name, false))
+ if ( ! var_is_
plausible
_name (name, false))
return NULL;
target = var_create (name, 0);