POV-Ray : Newsgroups : povray.bugreports : Parse Error: String too long. Server Time
28 Mar 2024 15:29:47 EDT (-0400)
  Parse Error: String too long. (Message 11 to 13 of 13)  
<<< Previous 10 Messages Goto Initial 10 Messages
From: ingo
Subject: Re: Parse Error: String too long.
Date: 28 Dec 2018 09:51:10
Message: <XnsA9C6A1438D8A6seed7@news.povray.org>
in news:54a2ebe3$1@news.povray.org Le_Forgeron wrote:

>> Hmm, then I probably fixed this in my local branch in Perforce some
>> time ago [...]
>> 
>> 
> So does my own fix. I agree that the buffer size should not be
> tweaked. 
> 

Just ran into this. (3.8.0-alpha.9945627+av625.msvc14.win64) 

As there seem to be various fixes available, will it be fixed in 3.8?

ingo


Post a reply to this message

From: jr
Subject: Re: Parse Error: String too long.
Date: 28 Dec 2018 12:30:02
Message: <web.5c265d4cf7cf417b48892b50@news.povray.org>
ingo <ing### [at] tagpovrayorg> wrote:
> in news:54a2ebe3$1@news.povray.org Le_Forgeron wrote:
> ...
> Just ran into this. (3.8.0-alpha.9945627+av625.msvc14.win64)

the code below fails with all versions after 3.6.1 tried.

> As there seem to be various fixes available, will it be fixed in 3.8?

I just checked, this thread was started 4 years ago, to the day.  :-(



#version 3.6;

global_settings {
  assumed_gamma 1.0
  charset utf8
}

#declare S = "0123456789abcdef";
#declare M = "";

#declare I = 0;
#while(16 > I)
  #declare M = concat(M,S);
  // comment this + no output at all.
//  #debug concat("{",str(strlen(M),0,0), "} :", M, "\n")
  #declare I = I + 1;
#end

#debug concat("{",str(strlen(M),0,0), "} :", M)


(from strlen(S) = 208 the display goes wrong)


regards, jr.


Post a reply to this message

From: jr
Subject: Re: Parse Error: String too long.
Date: 28 Dec 2018 12:40:00
Message: <web.5c265fa1f7cf417b48892b50@news.povray.org>
"jr" <cre### [at] gmailcom> wrote:

> (from strlen(S) = 208 the display goes wrong)
              ^^^
               M
>
> regards, jr.


Post a reply to this message

<<< Previous 10 Messages Goto Initial 10 Messages

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.