Use memset rather than bzero.

This commit is contained in:
Francois Gouget 2001-05-22 19:19:12 +00:00 committed by Alexandre Julliard
parent a286cd3074
commit 39e1f318c5

View file

@ -261,7 +261,7 @@ BOOL CDROM_Audio_GetTracksInfo(WINE_CDAUDIO* wcda, int parentdev)
#ifdef linux
entry.cdte_format = CDROM_MSF;
#else
bzero((char *)&toc_buffer, sizeof(toc_buffer));
memset((char *)&toc_buffer, 0, sizeof(toc_buffer));
entry.address_format = CD_MSF_FORMAT;
entry.data_len = sizeof(toc_buffer);
entry.data = &toc_buffer;