Changeset 1392 in MondoRescue for branches/stable/mondo/src/common
- Timestamp:
- May 6, 2007, 1:55:53 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/stable/mondo/src/common/libmondo-stream.c
r1370 r1392 639 639 640 640 assert_string_is_neither_NULL_nor_zerolength(bkpinfo->media_device); 641 mr_list_alloc(tapecatalog);641 tapecatalog = mr_list_alloc(); 642 642 g_tape_posK = 0; 643 643 if (g_tape_stream) { … … 735 735 /* initialise the catalog */ 736 736 g_current_media_number = 1; 737 mr_list_alloc(tapecatalog);737 tapecatalog = mr_list_alloc(); 738 738 /* log stuff */ 739 739 log_it("Opening OUT cdstream with the command"); … … 765 765 return (0); 766 766 } 767 mr_list_alloc(tapecatalog);767 tapecatalog = mr_list_alloc(); 768 768 g_tape_posK = 0; 769 769 … … 1080 1080 1081 1081 /* place the data in a list elt */ 1082 mr_list_alloc_elt(elt,(void *)te, mr_free_te);1082 elt = mr_list_alloc_elt((void *)te, mr_free_te); 1083 1083 mr_list_add_elt_last(tapecatalog, elt); 1084 1084
Note:
See TracChangeset
for help on using the changeset viewer.