Subversion Repositories tendra.SVN

Rev

Rev 6 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6 Rev 14
Line 1203... Line 1203...
1203
		while ((c1 = *p++) != '?') {
1203
		while ((c1 = *p++) != '?') {
1204
		        *q++ = c1;
1204
		        *q++ = c1;
1205
		}
1205
		}
1206
		*q++='\0';
1206
		*q++='\0';
1207
 
1207
 
1208
		while ((c1 = *p++) != NULL) {
1208
		while ((c1 = *p++) != '\0' /*NULL*/) {
1209
		    *r++ = c1;
1209
		    *r++ = c1;
1210
		    /*
1210
		    /*
1211
		     * Only the value is user supplied and needs bounds
1211
		     * Only the value is user supplied and needs bounds
1212
		     * checking.
1212
		     * checking.
1213
		     */
1213
		     */