Browse Source

Fixed potential crash in mac's legacy WebInputStream implementation

tags/2021-05-28
hogliux 8 years ago
parent
commit
cbb8536a6d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_core/native/juce_mac_Network.mm

+ 1
- 1
modules/juce_core/native/juce_mac_Network.mm View File

@@ -408,10 +408,10 @@ public:
{
stop();
[connection release];
[data release];
[request release];
[headers release];
[delegate release];
[data release];
}
bool start (URL::OpenStreamProgressCallback* callback, void* context)


Loading…
Cancel
Save