diff options
| -rw-r--r-- | CHANGES | 2 | ||||
| -rw-r--r-- | asm/assem.c | 2 | ||||
| -rw-r--r-- | include/version.h | 2 |
3 files changed, 5 insertions, 1 deletions
@@ -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)" |
