Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 112487 | Differences between
and this patch

Collapse All | Expand All

(-)buffer_ssl.cc (+2 lines)
Lines 52-57 int IOBufferSSL::Do() Link Here
52
      break;
52
      break;
53
53
54
   case GET:
54
   case GET:
55
      if(eof)
56
	 return STALL;
55
      res=Get_LL(GET_BUFSIZE);
57
      res=Get_LL(GET_BUFSIZE);
56
      if(res>0)
58
      if(res>0)
57
      {
59
      {
(-)buffer.cc (+4 lines)
Lines 385-390 int IOBuffer::Do() Link Here
385
      break;
385
      break;
386
386
387
   case GET:
387
   case GET:
388
      if(eof)
389
	 return STALL;
388
      res=Get_LL(GET_BUFSIZE);
390
      res=Get_LL(GET_BUFSIZE);
389
      if(res>0)
391
      if(res>0)
390
      {
392
      {
Lines 443-448 int IOBufferStacked::Do() Link Here
443
445
444
   case GET:
446
   case GET:
445
      m|=down->Do();
447
      m|=down->Do();
448
      if(eof)
449
	 return m;
446
      res=Get_LL(GET_BUFSIZE);
450
      res=Get_LL(GET_BUFSIZE);
447
      if(res>0)
451
      if(res>0)
448
      {
452
      {

Return to bug 112487