pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] pspp/src/data dictionary.c


From: John Darrington
Subject: [Pspp-cvs] pspp/src/data dictionary.c
Date: Tue, 14 Aug 2007 06:22:38 +0000

CVSROOT:        /sources/pspp
Module name:    pspp
Changes by:     John Darrington <jmd>   07/08/14 06:22:38

Modified files:
        src/data       : dictionary.c 

Log message:
        Avoid assertion failure pasting from a dictionary with foreign encoding.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pspp/src/data/dictionary.c?cvsroot=pspp&r1=1.44&r2=1.45

Patches:
Index: dictionary.c
===================================================================
RCS file: /sources/pspp/pspp/src/data/dictionary.c,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -b -r1.44 -r1.45
--- dictionary.c        13 Aug 2007 04:31:43 -0000      1.44
+++ dictionary.c        14 Aug 2007 06:22:38 -0000      1.45
@@ -386,7 +386,7 @@
   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);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]