Commit 39e1f318 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Use memset rather than bzero.

parent a286cd30
...@@ -261,7 +261,7 @@ BOOL CDROM_Audio_GetTracksInfo(WINE_CDAUDIO* wcda, int parentdev) ...@@ -261,7 +261,7 @@ BOOL CDROM_Audio_GetTracksInfo(WINE_CDAUDIO* wcda, int parentdev)
#ifdef linux #ifdef linux
entry.cdte_format = CDROM_MSF; entry.cdte_format = CDROM_MSF;
#else #else
bzero((char *)&toc_buffer, sizeof(toc_buffer)); memset((char *)&toc_buffer, 0, sizeof(toc_buffer));
entry.address_format = CD_MSF_FORMAT; entry.address_format = CD_MSF_FORMAT;
entry.data_len = sizeof(toc_buffer); entry.data_len = sizeof(toc_buffer);
entry.data = &toc_buffer; entry.data = &toc_buffer;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment