File: svn_807.diff

package info (click to toggle)
dvbstreamer 2.1.0-5.8
  • links: PTS
  • area: main
  • in suites: sid
  • size: 5,676 kB
  • sloc: ansic: 42,193; sh: 10,230; python: 519; makefile: 363
file content (16 lines) | stat: -rw-r--r-- 625 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# ------------------------------------------------------------------------
# r807 | charrea6 | 2011-07-04 22:46:14 +0200(lun, 04 lug 2011) | 1 line
# 
# #3216252 - invalid free() on string literal
# ------------------------------------------------------------------------
Index: trunk/src/plugins/freesat_huffman.c
===================================================================
--- trunk/src/plugins/freesat_huffman.c	(revisione 806)
+++ trunk/src/plugins/freesat_huffman.c	(revisione 807)
@@ -146,5 +146,5 @@
         uncompressed[p] = 0;
         return uncompressed;
     }
-    return "";
+    return strdup("");
 }