Your Fiber stop block don't have access to the value in cFiber, even assuming that's assigned the Child fiber URI.
A simple example to start and stop:
Flow beginning
Cloud message receive: Message= message
Expression true: message="start"
Fork: Child Fiber URI=childUri
Audio record start:
Proceed=When complete
Expression true: message="stop"
Fiber stop: Fiber URI=childUri
But using Fork is unnecessary since audio recording can be done in the "background" without "blocking" the fiber using Proceed=Immediately, so it can be simplified to:
Flow beginning
Cloud message receive: Message= message
Expression true: message="start"
Audio record start: Proceed=Immediately
Expression true: message="stop"
Audio record stop