Skip to content
Snippets Groups Projects
Commit 33be5572 authored by Tinny Ng's avatar Tinny Ng
Browse files

Fix compilation error.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@174483 13f79535-47bb-0310-9956-ffa450edef68
parent 49beac24
No related branches found
No related tags found
No related merge requests found
......@@ -228,7 +228,7 @@ URLAccessBinInputStream::readBytes(XMLByte* const toFill
// Throw on any error
if (status != noErr || state == kURLErrorOccurredState)
ThrowXML1(NetAccessorException, XMLExcepts::NetAcc_ReadSocket, mURLReference);
ThrowXML(NetAccessorException, XMLExcepts::NetAcc_ReadSocket);
// Return number of bytes delivered
return maxToRead - bytesDesired;
......
......@@ -56,6 +56,9 @@
/*
* $Log$
* Revision 1.9 2002/12/09 13:12:12 tng
* Fix compilation error.
*
* Revision 1.8 2002/12/09 09:57:27 gareth
* Fixed compile error by adding private member. Not very efficient. Should be looked at again.
*
......@@ -141,12 +144,7 @@ XERCES_CPP_NAMESPACE_BEGIN
UnixHTTPURLInputStream::UnixHTTPURLInputStream(const XMLURL& urlSource)
: fSocket(0)
, fBytesProcessed(0)
, fURLText(0)
{
//REVISIT inefficient - this is used by the error reporting in readBytes. Do we need it?
fURLText = XMLString::replicate(urlSource.getURLText());
//
// Pull all of the parts of the URL out of th urlSource object, and transcode them
// and transcode them back to ASCII.
......@@ -324,7 +322,6 @@ UnixHTTPURLInputStream::~UnixHTTPURLInputStream()
{
shutdown(fSocket, 2);
close(fSocket);
delete[] fURLText;
}
......@@ -349,7 +346,7 @@ unsigned int UnixHTTPURLInputStream::readBytes(XMLByte* const toFill
len = read(fSocket, (void *) toFill, maxToRead);
if (len == -1)
{
ThrowXML1(NetAccessorException, XMLExcepts::NetAcc_ReadSocket, fURLText);
ThrowXML(NetAccessorException, XMLExcepts::NetAcc_ReadSocket);
}
}
......
......@@ -56,6 +56,9 @@
/*
* $Log$
* Revision 1.4 2002/12/09 13:12:12 tng
* Fix compilation error.
*
* Revision 1.3 2002/12/09 09:57:27 gareth
* Fixed compile error by adding private member. Not very efficient. Should be looked at again.
*
......@@ -130,8 +133,6 @@ private :
// fBufferPos, fBufferEnd
// Pointers into fBuffer, showing start and end+1 of content
// that readBytes must return.
// fURLText
// Full URL text for error reporting
// -----------------------------------------------------------------------
int fSocket;
......@@ -139,7 +140,6 @@ private :
char fBuffer[4000];
char * fBufferEnd;
char * fBufferPos;
XMLCh * fURLText;
}; // UnixHTTPURLInputStream
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment