cp vompclient /mnt/auto/defiant/diskless/nfs/mvp-dev
debug:
- ../../gdb/gdb-6.7/gdb/gdb /diskless/nfs/mvp/vompclient /diskless/nfs/mvp/core.*
+ ../../gdb/gdb-6.7/gdb/gdb /mnt/auto/defiant/diskless/nfs/mvp/vompclient /mnt/auto/defiant/diskless/nfs/mvp/core.*
debug2:
../../gdb/gdb-6.7/gdb/gdb /mnt/auto/defiant/diskless/nfs/mvp-dev/vompclient /mnt/auto/defiant/diskless/nfs/mvp-dev/core.*
VDR_RequestPacket vrp;
if (!vrp.init(VDR_STOPSTREAMING, true, 0)) return 0;
- edUnregister(TEMP_SINGLE_VDR_PR);
- delete TEMP_SINGLE_VDR_PR;
- TEMP_SINGLE_VDR_PR = NULL;
+ if (TEMP_SINGLE_VDR_PR) // this block only needs to be done if it was a live stream
+ // TEMP_SINGLE_VDR_PR will not be set unless we are streaming a channel
+ {
+ edUnregister(TEMP_SINGLE_VDR_PR);
+ delete TEMP_SINGLE_VDR_PR;
+ TEMP_SINGLE_VDR_PR = NULL;
+ }
VDR_ResponsePacket* vresp = RequestResponse(&vrp);
if (vresp->noResponse()) { delete vresp; return 0; }