Custom Query (257 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (46 - 48 of 257)

Ticket Owner Reporter Resolution Summary
#293 ph3-der-loewe ph3-der-loewe fixed pa_xfree() needs return getting fixed.
Description

pa_xfree() is of type void and should not return a value. This should be fixed.

The following patch will do this:

  • xmalloc.c

    diff -u -r1.5 xmalloc.c
     
    6363 
    6464/** Free allocated memory */ 
    6565void pa_xfree(void *p) { 
    66  return roar_mm_free(p); 
     66 roar_mm_free(p); 
    6767} 
    6868 
    6969/** Duplicate the specified string, allocating memory with pa_xmalloc() */ 
#298 ph3-der-loewe ph3-der-loewe fixed rpld should support to write a history of played files
Description

rpld should allow to write a history of played files. This needs to include all information needed for royalty payment.

#299 ph3-der-loewe ph3-der-loewe fixed "URAS" playlist format support
Description

Support for the "URAS" playlist format should be added.

The format is XML based and in some aspects similar to XSPF.

Note: See TracQuery for help on using queries.