From 58dabe561e0d0db2690eacab325013ea3bbf908b Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Sun, 21 Mar 2004 16:18:16 +0000 Subject: [PATCH] librmff stored tracks as pointers now, not as full structs anymore. --- src/input/r_real.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/r_real.cpp b/src/input/r_real.cpp index 31ff24257..97aeb0b44 100644 --- a/src/input/r_real.cpp +++ b/src/input/r_real.cpp @@ -146,7 +146,7 @@ real_reader_c::parse_headers() { if (rmff_read_headers(file) == RMFF_ERR_OK) { for (ndx = 0; ndx < file->num_tracks; ndx++) { - track = &file->tracks[ndx]; + track = file->tracks[ndx]; if ((track->type == RMFF_TRACK_TYPE_UNKNOWN) || (get_uint32_be(&track->mdpr_header.type_specific_size) == 0)) continue;