diff options
Diffstat (limited to 'lib/opencdk/stream.c')
-rw-r--r-- | lib/opencdk/stream.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/opencdk/stream.c b/lib/opencdk/stream.c index a9e0af3a4e..7e8d51e2ad 100644 --- a/lib/opencdk/stream.c +++ b/lib/opencdk/stream.c @@ -1376,7 +1376,7 @@ stream_cache_flush (cdk_stream_t s, FILE * fp) } s->cache.size = 0; s->cache.on = 0; - wipemem (s->cache.buf, s->cache.alloced); + memset (s->cache.buf, 0, s->cache.alloced); } return 0; } @@ -1416,7 +1416,7 @@ cdk_stream_kick_off (cdk_stream_t inp, cdk_stream_t out) } } - wipemem (buf, sizeof (buf)); + memset (buf, 0, sizeof (buf)); return rc; } |