diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2015-09-05 11:49:56 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2015-09-05 11:49:56 +0200 |
commit | 50d268538ee714e8e3f88bba0e952c33a75d3777 (patch) | |
tree | c6e20605a33ea719c4d491a77bcb67928c785305 /transfer.h | |
parent | 3cd5294d8a337ee5cd2ec894c9fbe04ad3a7690d (diff) | |
download | vdr-50d268538ee714e8e3f88bba0e952c33a75d3777.tar.gz vdr-50d268538ee714e8e3f88bba0e952c33a75d3777.tar.bz2 |
Added a missing 'const' to cReceiver::Receive(), to protect the given Data from being modified
Diffstat (limited to 'transfer.h')
-rw-r--r-- | transfer.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: transfer.h 2.4 2013/03/01 09:49:46 kls Exp $ + * $Id: transfer.h 4.1 2015/09/05 11:43:08 kls Exp $ */ #ifndef __TRANSFER_H @@ -19,7 +19,7 @@ private: cPatPmtGenerator patPmtGenerator; protected: virtual void Activate(bool On); - virtual void Receive(uchar *Data, int Length); + virtual void Receive(const uchar *Data, int Length); public: cTransfer(const cChannel *Channel); virtual ~cTransfer(); |