You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-radio/tlf/files/tlf-1.4.1-zone_nr.patch

21 lines
468 B

diff --git a/src/zone_nr.c b/src/zone_nr.c
index c7e2a33..805bd4e 100644
--- a/src/zone_nr.c
+++ b/src/zone_nr.c
@@ -20,11 +20,14 @@
* get zone number
*
*--------------------------------------------------------------*/
-
+#include "string.h"
int zone_nr(char *comment) {
int z = 0;
+ if (strlen(comment) < 2)
+ return z;
+
if (comment[0] <= 57 && comment[0] >= 48)
z = (comment[0] - 48) * 10;
if (comment[1] <= 57 && comment[1] >= 48)