![]() |
#1 |
Gadget Freak
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 1,169
Karma: 1043832
Join Date: Nov 2007
Location: US
Device: EE, Note 8
|
![]()
Downloaded and installed the 0.8.3 release. Upon execution, however, the program errors with the following:
Spoiler:
Toshiba Satellite L355D 32 bit Windows Vista Home Premium Service Pack 2 Sigil filesize 29,652KB; download @ 0930 EST. ![]() |
![]() |
![]() |
![]() |
#2 |
Sigil Developer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 8,478
Karma: 5703586
Join Date: Nov 2009
Device: many
|
Hi,
The faulting module name is called StackHash according to the info you posted but Sigil has no module named StackHash nor is there any code using that string in the Sigil source code repository. Fault Module Name: StackHash_9f59 Fault Module Version: 0.0.0.0 Fault Module Timestamp: 00000000 Exception Offset: 04c4d1c0 Exception Code: c0000005 Exception Data: 00000008 OS Version: 6.0.6002.2.2.0.768.3 Locale ID: 1033 Additional Information 1: 9f59 Additional Information 2: 2ae41754e77d96bab247d370db82699b Additional Information 3: ba64 Additional Information 4: 37197f07a511a7b86a85e3f5f8b58116 So could this be related to a virus protection program? My search on google for "StackHash fault module" indicates that it is indeed an anti-virus related error and that there are DEP setting on Windows to tell the antivirus program to stop interfering. KevinH |
![]() |
![]() |
Advert | |
|
![]() |
#3 |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 28,358
Karma: 203720150
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
|
For what it's worth; I just installed 0.8.3 on the exact same OS -- Windows Vista Home Premium SP2 (32-bit) and experience no issues like that.
|
![]() |
![]() |
![]() |
#4 |
Gadget Freak
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 1,169
Karma: 1043832
Join Date: Nov 2007
Location: US
Device: EE, Note 8
|
![]()
@KevinH / DiapDealer
Responses must appreciated. Attempts to set an exception in DEP results in; "Data Execution Prevention ! This program must run with data execution protection (DEP) enabled. You cannot turn off DEP for this program." Additionally, I have no issues running 0.8.1. Also running; McAfee Antivirus Plus CCleaner |
![]() |
![]() |
![]() |
#5 |
Sigil Developer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 8,478
Karma: 5703586
Join Date: Nov 2009
Device: many
|
Hi Gunner245,
There should be an "exceptions list" or "ignore me" list of some sort with your anti-virus software. Try googling "StackHash fault module" and seeing if there is some other way to deal with this. It truly is an issue with your anti-virus software. BY the way, make sure you have verified the sha256 sum of your download to make sure nothing nasty go attached by any issues on your own machine. Here they are directly from the site: Code:
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 Sigil-0.8.3-CHECKSUMS.sha256 2f5e6fd518b69379b5454a78954185b0e045ddc6120acf54c42ae2fae538d42b Sigil-0.8.3-Code.zip 55ed51120919f1c10e94082bd91ca76120e2dc991684f9d62ae3d78347181f85 Sigil-0.8.3-Mac-Package.dmg 15a2acc6414865bee2577fec2d98e0bca27d8ca6d4717981ac87e4cfd6b088d1 Sigil-0.8.3-Windows-Setup.exe de0f940f98425377107b8f17f2237ee5478505c5755bb054446e7b72df1e2990 Sigil-0.8.3-Windows-x64-Setup.exe Apache recommends this online sum tool: https://md5file.com/calculator KevinH Last edited by KevinH; 02-01-2015 at 01:20 PM. |
![]() |
![]() |
Advert | |
|
![]() |
#6 |
Resident Curmudgeon
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 79,157
Karma: 144284184
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
|
Windows shows StackHash_HHHH as the faulting module as a fallback when it cannot identify a loaded module at the memory address of the instruction that was being executed when a DEP error is trapped. A hash code computed on the contents of the instruction stack is just a shorthand way of identifying what was on the address stack when the fault occurred--if multiple crashes occur with the same hash, then it points to a possibly deterministic and reproducible error. These sorts of errors are caused by the same sorts of faults that produce other memory addressing faults--it can be unstable or faulty hardware, or a host of programming or data errors, any of which can cause the CPU to try loading an instruction from a bad address.
|
![]() |
![]() |
![]() |
#7 |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 28,358
Karma: 203720150
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
|
I've only ever run DEP in it's default mode: which is to only check essential Windows programs and services. I have no idea if there's code in Sigil that DEP would flag if it was turned on for all programs. There was memory corruption fixes in 0.8.3. Perhaps there something there DEP doesn't like (when it's modified to check all programs). I've no idea.
Last edited by DiapDealer; 02-01-2015 at 01:57 PM. |
![]() |
![]() |
![]() |
#8 |
Sigil Developer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 8,478
Karma: 5703586
Join Date: Nov 2009
Device: many
|
Hi JSWolf,
Thank you for that description. I did not know that. How does anti-virus software actually force close a program it does not like? Does it inject code into the stack to force a segfault or abort? It must be related as every Google search I did seems to point to this type of error happening with anti-virous software of some sort? I am not a Windows person at all. Any Ideas of how to track this down and determine if it a conflict with some Anti-Virus software? Thanks, KevinH |
![]() |
![]() |
![]() |
#9 |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 13,309
Karma: 78876004
Join Date: Nov 2007
Location: Toronto
Device: Libra H2O, Libra Colour
|
Are the various drivers (including Video card) current on your system?
|
![]() |
![]() |
![]() |
#10 |
Sigil Developer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 8,478
Karma: 5703586
Join Date: Nov 2009
Device: many
|
Hi,
Interestingly enough the StackHash_9f59 string is findable on google and exists for Windows Vista Service Pack 2 and was related to running MySql back in 2009. The hash value and the first two lines of Additional Information match byte for byte with the error reported here. The bug reporter could not find any reason for the bug. Neither could the MySQL developers. But funny enough the user did find a workaround: "Suggested fix: If you change the Appearance Settings to anything except "Windows Aero" OSS WB will start without error." Another program FreeCAD which is a Qt program had a report in 2011 with the exact same StackHash_9f59 and all 4 lines of Additional Information were byte for byte identical. Again this was from a Vista user and that user fixed it by updating his ATI driver! So it appears to be a Vista problem related to graphics in some way since the exact same stack hash has shown errors in the past under completely different executables. Sorry, I can't really help more, other than to say, the likelihood of the Sigil code base with the latest compilers in 2015 exactly matching a problem in 2011 or 2009 seems quite remote, meaning that the issue if probably something else on your system and not Sigil. Hope this helps, Kevin |
![]() |
![]() |
![]() |
#11 |
null operator (he/him)
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 21,631
Karma: 29710510
Join Date: Mar 2012
Location: Sydney Australia
Device: none
|
|
![]() |
![]() |
![]() |
#12 | |
Gadget Freak
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 1,169
Karma: 1043832
Join Date: Nov 2007
Location: US
Device: EE, Note 8
|
Quote:
|
|
![]() |
![]() |
![]() |
#13 | |
Gadget Freak
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 1,169
Karma: 1043832
Join Date: Nov 2007
Location: US
Device: EE, Note 8
|
![]()
Updated with the latest ATI driver found at the Toshiba website...same error.
Quote:
![]() Last edited by Gunnerp245; 02-02-2015 at 06:55 AM. Reason: Additional info |
|
![]() |
![]() |
![]() |
#14 |
Sigil Developer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 8,478
Karma: 5703586
Join Date: Nov 2009
Device: many
|
Hi,
Have you tried any of DiapDealers unofficial builds. Yes they are typically for older versions of the OS but should work just fine on your machine. Kevin |
![]() |
![]() |
![]() |
#15 | |
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 28,358
Karma: 203720150
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
|
Quote:
Worth a shot. |
|
![]() |
![]() |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Font size issue in Sigil-Please help | rosshalde | ePub | 1 | 11-15-2014 04:32 PM |
Sigil issue or iBooks issue? | Tisha4870 | Sigil | 17 | 03-07-2014 07:29 PM |
Sigil 7.0 and the fix for issue 1961 | pete6055 | Sigil | 5 | 02-22-2013 06:14 PM |
InDesign CS6 and Sigil issue | tuxedo73 | ePub | 2 | 09-06-2012 04:19 PM |
Sigil Import Issue | rachkmar | Sigil | 4 | 06-28-2012 12:25 PM |