- Fixed a bug in splitter.c

- Added hupdate and hzipget to Hipadaba
This commit is contained in:
koennecke
2006-12-19 14:30:29 +00:00
parent cd2d07690c
commit 826b13d890
2 changed files with 129 additions and 17 deletions

View File

@ -114,7 +114,7 @@ typedef enum _CharType {eSpace, eNum,eeText,eQuote} CharType;
{
TokenList *pList = NULL;
TokenList *pCurrent;
char pBueffel[132];
char pBueffel[256];
char *pChar;
CharType eWhat;
int i, n;
@ -141,7 +141,7 @@ typedef enum _CharType {eSpace, eNum,eeText,eQuote} CharType;
{
i = 0;
pChar++;
while( (isEnd(*pChar) != 2) && (CheckSpecial(pChar) != eQuote))
while( (isEnd(*pChar) != 2) && (CheckSpecial(pChar) != eQuote) && i < 250)
{
if (*pChar == '\\') {
pBueffel[i] = Tcl_Backslash(pChar, &n);