#454 also applies to FTPStreamFactory

This commit is contained in:
Guenter Obiltschnig 2014-05-31 12:48:09 +02:00
parent 83405d6812
commit 62d69b7c6f

View File

@ -40,6 +40,8 @@ public:
FTPStreamBuf(std::istream& istr):
_istr(istr)
{
// make sure exceptions from underlying string propagate
_istr.exceptions(std::ios::badbit);
}
~FTPStreamBuf()