Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32203
Modified Files: Tag: desiredata m_class.c m_pd.h Log Message: missing lines from previous commit
Index: m_pd.h =================================================================== RCS file: /cvsroot/pure-data/pd/src/m_pd.h,v retrieving revision 1.4.4.11.2.33.2.15 retrieving revision 1.4.4.11.2.33.2.16 diff -C2 -d -r1.4.4.11.2.33.2.15 -r1.4.4.11.2.33.2.16 *** m_pd.h 20 Dec 2006 06:05:23 -0000 1.4.4.11.2.33.2.15 --- m_pd.h 20 Dec 2006 06:10:07 -0000 1.4.4.11.2.33.2.16 *************** *** 93,96 **** --- 93,97 ---- or to the bindlist of several targets */ struct _symbol *s_next; /* brochette of all symbols */ + size_t s_size; /* size of symbol (DesireData support for NUL) */ } t_symbol;
Index: m_class.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/m_class.c,v retrieving revision 1.3.4.7.2.22.2.13 retrieving revision 1.3.4.7.2.22.2.14 diff -C2 -d -r1.3.4.7.2.22.2.13 -r1.3.4.7.2.22.2.14 *** m_class.c 20 Dec 2006 06:05:23 -0000 1.3.4.7.2.22.2.13 --- m_class.c 20 Dec 2006 06:10:06 -0000 1.3.4.7.2.22.2.14 *************** *** 438,441 **** --- 438,442 ---- memcpy(sym2->s_name, s, n); sym2->s_name[n]=0; + sym2->s_size=n; } *sym1 = sym2;