On reset, copying STQM config into FTQM also copied the pg_info pointer.
Since STQM pg_info was non-NULL, FTQM ended up sharing the same pointer.
This caused the allocator to skip FTQM allocation, and later FTQM accesses
went out of bounds, leading to DMA address faults and page crashes.
Example reset logs:
STQM pg_info = 0xfffffe0286049000
FTQM pg_info = 0xfffffe0286049000 <-- same pointer
Clear FTQM->pg_info after memcpy so that FTQM always allocates
its own backing store.