git: 9front

Download patch

ref: b348db28e5077f501bd20d73d94734f1c31aed0b
parent: 11780e9aa0d8d0d1318c8128ddaef3ba658e20e8
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Thu Dec 28 22:56:56 EST 2023

qc: fix crash, nodet not nused/initialized

--- a/sys/src/cmd/qc/reg.c
+++ b/sys/src/cmd/qc/reg.c
@@ -545,7 +545,7 @@
 		v++;
 	}
 	if(s)
-		if(s->name[0] == '.' && s != nodret->sym)
+		if(s->name[0] == '.')
 			goto none;
 	if(nvar >= NVAR) {
 		if(debug['w'] > 1 && s)
--