Where two processes are started in quick succession without a persistent instance available, a race condition is possible where one (A) holds the mutex (very briefly) while the other (B) attempts to take it. B will proceed to send a message even though no persistent instance exists.
This race condition is exceptionally rare. And I'm not entirely sure how to fix it.