Ticket #4672: mythtv_tspacket_CreateClone.diff

File mythtv_tspacket_CreateClone.diff, 418 bytes (added by Shane Shrybman <gnome42@…>, 16 years ago)

tspacket.h CreateClone?() fix

  • libs/libmythtv/mpeg/tspacket.h

     
    131131   
    132132    inline TSPacket* CreateClone() const {
    133133        TSPacket *pkt = new TSPacket();
    134         memcpy(&pkt, this, SIZE);
     134        memcpy(pkt, this, SIZE);
    135135        return pkt;
    136136    }
    137137