close IOCB if open failed -- otherwise is is still marked as "in use"
This commit is contained in:
@@ -10,12 +10,12 @@
|
||||
.export __graphics
|
||||
|
||||
.import findfreeiocb
|
||||
.import __do_oserror,__oserror
|
||||
.import __oserror
|
||||
.import fddecusage
|
||||
.import clriocb
|
||||
.import fdtoiocb
|
||||
.import newfd
|
||||
.import scrdev
|
||||
.import scrdev
|
||||
.importzp tmp1,tmp2,tmp3
|
||||
|
||||
.include "atari.inc"
|
||||
@@ -97,7 +97,12 @@ doopen: txa
|
||||
stx __oserror
|
||||
rts
|
||||
|
||||
cioerr: jsr fddecusage ; decrement usage counter of fd as open failed
|
||||
jmp __do_oserror
|
||||
cioerr: sty tmp3 ; remember error code
|
||||
lda #CLOSE
|
||||
sta ICCOM,x
|
||||
jsr CIOV ; close IOCB again since open failed
|
||||
jsr fddecusage ; and decrement usage counter of fd
|
||||
lda tmp3 ; put error code into A
|
||||
jmp __mappederrno
|
||||
|
||||
.endproc ; __graphics
|
||||
|
||||
Reference in New Issue
Block a user