Removing ugly shockwave hack bug 115461 r=av sr=beard

This commit is contained in:
peterlubczynski%netscape.com 2002-01-26 00:45:45 +00:00
parent 25d640c7ec
commit cbfdbcc0bc

View File

@ -157,13 +157,8 @@ nsresult ns4xPluginStreamListener::CleanUpStream(NPReason reason)
return NS_ERROR_FAILURE;
}
// check to see if we have a call back and a
// XXX nasty hack for Shockwave Registration.
// we seem to crash doing URLNotify so just always exclude it.
// See bug 85334.
const char macromediaurl[] = "http://pinger.macromedia.com";
if (callbacks->urlnotify != NULL && mNotifyData != nsnull &&
PL_strncasecmp(mNPStream.url, macromediaurl, sizeof(macromediaurl) - 1) != 0 ) {
// check to see if we have a callback
if (callbacks->urlnotify && mNotifyData) {
PRLibrary* lib = nsnull;
lib = mInst->fLibrary;