[Varnish] #625: Glitch in poll waiter recycle batch logic (changeset 4445)

Varnish varnish-bugs at projects.linpro.no
Fri Jan 22 01:11:41 CET 2010


#625: Glitch in poll waiter recycle batch logic  (changeset 4445)
----------------------+-----------------------------------------------------
 Reporter:  slink     |       Owner:  phk  
     Type:  defect    |      Status:  new  
 Priority:  high      |   Milestone:       
Component:  varnishd  |     Version:  trunk
 Severity:  blocker   |    Keywords:       
----------------------+-----------------------------------------------------
 http://varnish.projects.linpro.no/changeset/4445 :

 {{{
 #!C
 for (j = 0; j * sizeof ss[0] < i; j += sizeof ss[0]) {
 }}}

 should read:

 {{{
 #!C
 for (j = 0; j * sizeof ss[0] < i; j++) {
 }}}

 (ARGL. It's taken me far too long to spot this)

-- 
Ticket URL: <http://varnish.projects.linpro.no/ticket/625>
Varnish <http://varnish.projects.linpro.no/>
The Varnish HTTP Accelerator


More information about the varnish-bugs mailing list