Re: Small bug in src/stream/ngx_stream_proxy_module.c

2015-07-02 Thread itpp2012
Roman Arutyunyan Wrote: --- > Thanks, we’re planning to commit the fix. > > Could you say your name so we could add it to the commit message? Just stick to itpp2012, everyone knows by now we produce nginx for Windows based on the Linux version,

Re: Small bug in src/stream/ngx_stream_proxy_module.c

2015-07-02 Thread Roman Arutyunyan
Thanks, we’re planning to commit the fix. Could you say your name so we could add it to the commit message? > On 30 Jun 2015, at 15:38, itpp2012 wrote: > > Roman Arutyunyan Wrote: > --- >>> On 30 Jun 2015, at 15:01, itpp2012 wrote: >>> >>> R

Re: Small bug in src/stream/ngx_stream_proxy_module.c

2015-06-30 Thread itpp2012
Roman Arutyunyan Wrote: --- > > On 30 Jun 2015, at 15:01, itpp2012 wrote: > > > > Roman Arutyunyan Wrote: > > --- > >> What compiler do you have? > > > > A proper one :) vc++ > > version? 20

Re: Small bug in src/stream/ngx_stream_proxy_module.c

2015-06-30 Thread Roman Arutyunyan
> On 30 Jun 2015, at 15:01, itpp2012 wrote: > > Roman Arutyunyan Wrote: > --- >> What compiler do you have? > > A proper one :) vc++ version? -- Roman Arutyunyan ___ nginx mailing list nginx@ngi

Re: Small bug in src/stream/ngx_stream_proxy_module.c

2015-06-30 Thread itpp2012
Roman Arutyunyan Wrote: --- > What compiler do you have? A proper one :) vc++ Posted at Nginx Forum: http://forum.nginx.org/read.php?2,259969,259991#msg-259991 ___ nginx mailing list nginx@nginx.org

Re: Small bug in src/stream/ngx_stream_proxy_module.c

2015-06-30 Thread Roman Arutyunyan
Hello, > On 29 Jun 2015, at 16:05, itpp2012 wrote: > > (1066) : warning C4244: '=' : conversion from 'off_t' to 'size_t', possible > loss of data > > diff line 1066: >if (size > (size_t) limit) { > -size = limit; > +size = (size_t) limit;

Small bug in src/stream/ngx_stream_proxy_module.c

2015-06-29 Thread itpp2012
(1066) : warning C4244: '=' : conversion from 'off_t' to 'size_t', possible loss of data diff line 1066: if (size > (size_t) limit) { -size = limit; +size = (size_t) limit; } Posted at Nginx Forum: http://forum.nginx.org/rea