gdp: Fix threadsafety of the crc checking function.

Original commit message from CVS:
* libs/gst/dataprotocol/dataprotocol.c: (gst_dp_crc):
Fix threadsafety of the crc checking function.
This commit is contained in:
Wim Taymans 2004-10-01 16:49:01 +00:00 committed by Tim-Philipp Müller
parent e8ef3dac6e
commit c6ebc31067

View file

@ -50,7 +50,8 @@ static guint16
gst_dp_crc (const guint8 * buffer, register guint length)
{
static gboolean initialized = FALSE;
static guint16 crc_register, crc_table[256];
static guint16 crc_table[256];
guint16 crc_register;
unsigned long i, j, k;
if (!initialized) {