Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!know!sdd.hp.com!usc!ucsd!hub.ucsb.edu!ucsbuxa!6600prao From: 6600prao@ucsbuxa.ucsb.edu (Parik Rao) Newsgroups: comp.sys.apple2 Subject: Re: Looking for GS/OS Exerciser Message-ID: <7270@hub.ucsb.edu> Date: 16 Nov 90 22:05:38 GMT References: <39834@ut-emx.uucp> Sender: news@hub.ucsb.edu Distribution: na Lines: 19 The GS/OS exerciser is not on America Online. Its bundled with GSBug and was given away free at KansasFest but there isn't any other way to get it. GSBug is worth the $$, you can order it straight from APDA. Error $4F means the space you have provided for a pathname is too small ("Class 1 output path too small" or somesuch). You need to expand the size of the buffer provided. One way to handle this easily is to allocate a XX byte handle (ie, 69) and then if you get error $4F resize the handle to XX more bytes (ie, 69+200). Keep incrementing by 100,1000,50, or whatever bytes until you don't get error $4F. Another (easier) way is to allocate a 4k or 8k buffer...but that could increase the size of your program dramatically!