From f1421b184eef7c9140ba6be3a497d90e37754191 Mon Sep 17 00:00:00 2001 From: Kenneth J Davis Date: Mon, 20 Sep 2004 08:08:27 +0000 Subject: [PATCH] force use of label until additional merge allows uncommenting chunk so builds git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@1049 6ac86273-5f31-0410-b378-82cca8765d1b --- kernel/inthndlr.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kernel/inthndlr.c b/kernel/inthndlr.c index 75aec88..3d0c90e 100644 --- a/kernel/inthndlr.c +++ b/kernel/inthndlr.c @@ -1884,7 +1884,6 @@ VOID ASMCFUNC int2F_12_handler(struct int2f12regs r) rc = DosClose(r.BX); goto short_check; -#if 0 case 0x28: /* move file pointer */ /* * RBIL says: "sets user stack frame pointer to dummy buffer, @@ -1895,6 +1894,7 @@ VOID ASMCFUNC int2F_12_handler(struct int2f12regs r) CritErrCode = SUCCESS; if (r.BP < 0x4200 || r.BP > 0x4202) goto error_invalid; +#if 0 { sft FAR *s = get_sft(r.BX); if ((rc = _SftSeek(s, MK_ULONG(r.CX, r.DX), r.BP & 0xff)) >= SUCCESS) @@ -1904,6 +1904,8 @@ VOID ASMCFUNC int2F_12_handler(struct int2f12regs r) } } goto short_check; +#else + goto error_invalid; #endif case 0x29: /* read from file */