Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 203777 | Differences between
and this patch

Collapse All | Expand All

(-)libcdio-0.78.2-orig/work/libcdio-0.78.2/src/cd-info.c (-1 / +1 lines)
Lines 539-545 Link Here
539
      iso9660_stat_t *p_statbuf = _cdio_list_node_data (entnode);
539
      iso9660_stat_t *p_statbuf = _cdio_list_node_data (entnode);
540
      char *psz_iso_name = p_statbuf->filename;
540
      char *psz_iso_name = p_statbuf->filename;
541
      char _fullname[4096] = { 0, };
541
      char _fullname[4096] = { 0, };
542
      char translated_name[MAX_ISONAME+1];
542
      char *translated_name = (char *) alloca(strlen(psz_iso_name+1));
543
543
544
      if (yep != p_statbuf->rr.b3_rock || 1 == opts.no_rock_ridge) {
544
      if (yep != p_statbuf->rr.b3_rock || 1 == opts.no_rock_ridge) {
545
	iso9660_name_translate_ext(psz_iso_name, translated_name, 
545
	iso9660_name_translate_ext(psz_iso_name, translated_name, 
(-)libcdio-0.78.2-orig/work/libcdio-0.78.2/src/iso-info.c (-1 / +2 lines)
Lines 224-230 Link Here
224
      iso9660_stat_t *p_statbuf = _cdio_list_node_data (entnode);
224
      iso9660_stat_t *p_statbuf = _cdio_list_node_data (entnode);
225
      char *psz_iso_name = p_statbuf->filename;
225
      char *psz_iso_name = p_statbuf->filename;
226
      char _fullname[4096] = { 0, };
226
      char _fullname[4096] = { 0, };
227
      char translated_name[MAX_ISONAME+1];
227
      char *translated_name = (char *) alloca(strlen(psz_iso_name+1));
228
228
229
229
      if (yep != p_statbuf->rr.b3_rock || 1 == opts.no_rock_ridge) {
230
      if (yep != p_statbuf->rr.b3_rock || 1 == opts.no_rock_ridge) {
230
	iso9660_name_translate_ext(psz_iso_name, translated_name, 
231
	iso9660_name_translate_ext(psz_iso_name, translated_name, 

Return to bug 203777