summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--asm/assem.c2
-rw-r--r--include/version.h2
3 files changed, 5 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 167603f0..064fd1d2 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+20101125
+ asm/assem.c don't attempt to use missing src (issue 243)
20100925
appl/lib/w3c/uris.b - handle existing Unicode characters if they happen not to have been encoded into string
appl/svc/httpd/parser.b - similar [response to issue 233]
diff --git a/asm/assem.c b/asm/assem.c
index 9b12c503..b35796fc 100644
--- a/asm/assem.c
+++ b/asm/assem.c
@@ -263,6 +263,8 @@ srcout(void)
{
char *p;
+ if(srcpath == nil)
+ return;
for(p = srcpath; *p; p++)
Bputc(bout, *p);
Bputc(bout, '\0');
diff --git a/include/version.h b/include/version.h
index a181733c..b8246be2 100644
--- a/include/version.h
+++ b/include/version.h
@@ -1 +1 @@
-#define VERSION "Fourth Edition (20100925)"
+#define VERSION "Fourth Edition (20101125)"