Hi Jules,
In [code]bool MemoryOutputStream::write (const void* const buffer, int howMany)
{
jassert (buffer != nullptr && howMany >= 0);
[/code]
I think the assert should be
(otherwise the assert is triggered when an empty memoryblock is written to a stream – this happens for ex in juce_linux_Network.cpp)