<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to bugs</title><link>https://sourceforge.net/p/applecommander/bugs/</link><description>Recent changes to bugs</description><atom:link href="https://sourceforge.net/p/applecommander/bugs/feed.rss" rel="self"/><language>en</language><lastBuildDate>Tue, 26 Jun 2012 10:44:27 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/applecommander/bugs/feed.rss" rel="self" type="application/rss+xml"/><item><title>NullPointer Exception due to getFile()</title><link>https://sourceforge.net/p/applecommander/bugs/9/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;package com.webcodepro.applecommander.storage.os.cpm&lt;br /&gt;
class CpmFormatDisk&lt;/p&gt;
&lt;p&gt;/**&lt;br /&gt;
* Create a new FileEntry.&lt;br /&gt;
* @see com.webcodepro.applecommander.storage.DirectoryEntry#createFile()&lt;br /&gt;
*/&lt;br /&gt;
public FileEntry createFile() throws DiskFullException {&lt;br /&gt;
return null;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;instead of "return null" this should be&lt;br /&gt;
throw new DiskFullException(textBundle.get("FileCreationNotSupported")); //$NON-NLS-1$&lt;br /&gt;
as in the other implementations instead. Otherwise clients face unexpected NullPointer exception.&lt;/p&gt;
&lt;p&gt;Best regards, Peter.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 26 Jun 2012 10:44:27 -0000</pubDate><guid>https://sourceforge.net9f06388ddfed16d57a50c34650d747d98be6084b</guid></item><item><title>NullPointer Exception due to getFormattedDisks() </title><link>https://sourceforge.net/p/applecommander/bugs/8/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;When using -l on an invalid disk image we get:&lt;/p&gt;
&lt;p&gt;Error: null&lt;br /&gt;
java.lang.NullPointerException&lt;br /&gt;
at com.webcodepro.applecommander.ui.ac.showDirectory(Unknown Source)&lt;br /&gt;
at com.webcodepro.applecommander.ui.ac.main(Unknown Source)&lt;br /&gt;
at com.webcodepro.applecommander.ui.AppleCommander.main(Unknown Source)&lt;/p&gt;
&lt;p&gt;Reason is in class Dsik:&lt;br /&gt;
/**&lt;br /&gt;
* Determine type of disk, and return the appropriate&lt;br /&gt;
* FormattedDisk object.  Returns null if none are&lt;br /&gt;
* recognized.&lt;br /&gt;
*/&lt;br /&gt;
public FormattedDisk[] getFormattedDisks() {&lt;/p&gt;
&lt;p&gt;But none of the calling locations deals with null, they all expect an empty array instead.&lt;br /&gt;
So I'd suggest to change return null to return new FormattedDisk[0].&lt;/p&gt;
&lt;p&gt;Best regards, Peter.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 21 Jun 2012 15:43:32 -0000</pubDate><guid>https://sourceforge.netca20875b7a0f16409960090112e5450f23044ccb</guid></item><item><title>Pascal 800K disks only hold 140K</title><link>https://sourceforge.net/p/applecommander/bugs/7/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Pascal 800K disks only hold 140K. This problem is fixed in version 1.3.4.3.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">John B. Matthews</dc:creator><pubDate>Sat, 24 May 2008 16:55:49 -0000</pubDate><guid>https://sourceforge.net643553c96488e026c0af516458c4bd205b859fe9</guid></item><item><title>Crash on Mac OS X Leopard</title><link>https://sourceforge.net/p/applecommander/bugs/6/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Tried launching the Apple Commander Mac OS X specific file. This does not launch on Intel Macs at all, notably the app is set to type PPC. Launching on a PPC machine brings the app up, but if you click anywhere on the app it crashes:&lt;/p&gt;
&lt;p&gt;Exception Type:  EXC_BAD_ACCESS (SIGSEGV)&lt;br /&gt;
Exception Codes: KERN_INVALID_ADDRESS at 0x000000007a587a58&lt;br /&gt;
Crashed Thread:  0&lt;/p&gt;
&lt;p&gt;Thread 0 Crashed:&lt;br /&gt;
0   com.apple.QD                    0x9000699c IsValidPixPatHandle + 64&lt;br /&gt;
1   com.apple.QD                    0x900067ec SetPortPat + 88&lt;br /&gt;
2   com.apple.HIToolbox             0x95139ea0 SetColorAndPenState(ColorPenState*) + 92&lt;br /&gt;
3   com.apple.HIToolbox             0x951db174 HIIconView::DrawSelf(short, __HIShape const*, CGContext*) + 992&lt;br /&gt;
4   com.apple.HIToolbox             0x950f3e58 HIView::DrawCacheOrSelf(short, __HIShape const*, CGContext*) + 128&lt;br /&gt;
5   com.apple.HIToolbox             0x950df8d4 HIView::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 6276&lt;br /&gt;
6   com.apple.HIToolbox             0x950cff68 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1484&lt;br /&gt;
7   com.apple.HIToolbox             0x950cf100 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 464&lt;br /&gt;
8   com.apple.HIToolbox             0x95143030 CallNextEventHandler + 116&lt;br /&gt;
9   libswt-pi-carbon-3139.jnilib    0x0e484000 Java_org_eclipse_swt_internal_carbon_OS_CallNextEventHandler + 52&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 08 Apr 2008 04:06:40 -0000</pubDate><guid>https://sourceforge.net3d006d753ecdf77532e33b1ff69243a7c63f0cd4</guid></item><item><title>Does not ask "do you wish to save ?" after DSK changed</title><link>https://sourceforge.net/p/applecommander/bugs/5/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Start AppleCommander&lt;/p&gt;
&lt;p&gt;Open a DSK image file&lt;/p&gt;
&lt;p&gt;Import a file or several files&lt;/p&gt;
&lt;p&gt;Close the AppleCommander window (back to the &lt;br /&gt;
starting dialog box)&lt;/p&gt;
&lt;p&gt;There should be a "Do you want to save this disk &lt;br /&gt;
(Y/N) ?" type of question since the contents have &lt;br /&gt;
changed.&lt;/p&gt;
&lt;p&gt;Otherwise, for newbies like me, you can easily be &lt;br /&gt;
flicking through disks without realising that you forgot &lt;br /&gt;
to save your changes ... and then you do it all over &lt;br /&gt;
again !!!&lt;/p&gt;
&lt;p&gt;I've been caught out several times already.&lt;/p&gt;
&lt;p&gt;I suspect the same problem would occur if you deleted &lt;br /&gt;
a file or changed its attributes.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">OZ_Rhett</dc:creator><pubDate>Wed, 24 Mar 2004 05:31:43 -0000</pubDate><guid>https://sourceforge.net6c225e500ca71cbab2419a20d8e61b98a86e634c</guid></item><item><title>Import of binary file does not set address in file header</title><link>https://sourceforge.net/p/applecommander/bugs/4/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Import of binary file does not set address in file header.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Robert Greene</dc:creator><pubDate>Sat, 31 Jan 2004 22:23:32 -0000</pubDate><guid>https://sourceforge.net72c4eb7f51feefad6295685fe7176c291cd605f2</guid></item><item><title>SWT GUI does not work on Mac OS X</title><link>https://sourceforge.net/p/applecommander/bugs/3/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;having a problem getting AppleCommander to work in OS &lt;br /&gt;
X. Have&lt;br /&gt;
downloaded SWT 2 and 3, AppleCommander vs 1.2.3, &lt;br /&gt;
1.3.0 and 1.3.1 - all&lt;br /&gt;
exhibit the same problem - the window opens, but can't &lt;br /&gt;
be brought to&lt;br /&gt;
the front to use (it can be closed and moved in the &lt;br /&gt;
background). I'm&lt;br /&gt;
using OS X v 10.3.2, have tried with two different users &lt;br /&gt;
on my machine&lt;br /&gt;
(admin and non-admin, with some and with no startup &lt;br /&gt;
items&lt;br /&gt;
respectively). Have tried logging out and in again, &lt;br /&gt;
restarting as well.&lt;/p&gt;
&lt;p&gt;I ran the jar from the commandline using the instructions &lt;br /&gt;
here:&lt;br /&gt;
&lt;a href="http://docs.info.apple.com/article.html?" rel="nofollow"&gt;http://docs.info.apple.com/article.html?&lt;/a&gt;&lt;br /&gt;
artnum=25408&amp;amp;sessionID=anonymous%&lt;br /&gt;
7C36890621&amp;amp;kbhost=kbase.info.apple.com%&lt;br /&gt;
3a80%2f#faq5&lt;/p&gt;
&lt;p&gt;tried it with 1.3.1 and 1.4.1 for java version - was able &lt;br /&gt;
to get a&lt;br /&gt;
directory listing of a disk image at the command line, but &lt;br /&gt;
not to get&lt;br /&gt;
the GUi working.&lt;/p&gt;
&lt;p&gt;Any ideas would be very much appreciated.&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Robert Greene</dc:creator><pubDate>Fri, 30 Jan 2004 03:49:45 -0000</pubDate><guid>https://sourceforge.net06f32d0383042aabd9cd2c652b5f59e4faaa47d1</guid></item><item><title>Bad data can crash AppleCommander</title><link>https://sourceforge.net/p/applecommander/bugs/2/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;If a disk is mostly in a known format, but has bad data &lt;br /&gt;
and what-not, AppleCommander may crash. &lt;br /&gt;
Technically, the worst culprit is a retrieving a non-&lt;br /&gt;
existant block or track/sector. &lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Robert Greene</dc:creator><pubDate>Sun, 01 Dec 2002 02:18:18 -0000</pubDate><guid>https://sourceforge.netebc9d3169f975ecb6648888b046c753703d05d34</guid></item><item><title>Improve column sort</title><link>https://sourceforge.net/p/applecommander/bugs/1/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Sort can be made more efficient and more correct - use &lt;br /&gt;
method names for sort information instead of grabbing &lt;br /&gt;
an array of Strings that are computed each time and &lt;br /&gt;
then discarded. This also will allow sorting by actual &lt;br /&gt;
datatype instead of converted datatype.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Robert Greene</dc:creator><pubDate>Sat, 23 Nov 2002 17:52:24 -0000</pubDate><guid>https://sourceforge.netf89cbbb3d6c6d4a1786671e2497d94eea407b814</guid></item></channel></rss>