This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I've heard of Lucene.Net and I've heard of Apache Tika. The question is - how do I index these documents using C# vs Java? I think the issue is that there is no .Net equivalent of Tika which extracts relevant text from these document types. UPDATE - Feb 05 2011 [...] read more
How to read error codes which appear in the console? <Warning>: ....... -exited abnormally with signal 9: Killed: 9 <Warning>: ....... -1 err = Bad file descriptor (0x00000009) Here what does signal 9 mean, are there any more signals apart from it. Any documentation available for it. I get this [...] read more
Can anyone help me decoding below crash log from iPhone Configuration utility of iPhone Device Oct 19 11:09:18 iPhone-AIPV02 kbd[1099] <Warning>: -[TIXPCDataTransport _handleForPurpose:withReplyBlock:] couldn't get data source for purpose=__TIRDTUD Oct 19 11:09:18 iPhone-AIPV02 mClient[1096] <Warning>: __47+[TIUserDictionaryController loadWordKeyPairs:]_block_invoke_0 Received nil NSData for TIRemoteDataUserDict Oct 19 11:09:20 iPhone-AIPV02 librariand[1100] <Notice>: MMe quota [...] read more
I have two reference counted classes that hold reference to each other instances. One of those references is marked as [weak] to prevent creating strong reference cycle. type TFoo = class(TInterfacedObject) private [weak] FRef: IInterface; public constructor Create(const ARef: IInterface); end; TBar = class(TInterfacedObject) private FFoo: IInterface; public constructor Create; [...] read more
Assuming I have an array LogoDataBy {byte[0x00000008]} [0x00000000]: 0x41 [0x00000001]: 0x42 [0x00000002]: 0x43 [0x00000003]: 0x44 [0x00000004]: 0x31 [0x00000005]: 0x32 [0x00000006]: 0x33 [0x00000007]: 0x34 I would like to create an array of an arbitrary length and left pad it with 0x00 newArray {byte[0x00000010]} [0x00000000]: 0x00 [0x00000001]: 0x00 [0x00000002]: 0x00 [0x00000003]: 0x00 [...] read more
I have run into this issue when verifying some code containing an unsafe method that returns a pointer. The example can be expressed as this: public class A { public static unsafe int* GetAnswer() { int fakeValue = 42; return &(fakeValue); } public static void Main() { int i = [...] read more
I am using testflight to test my app, and I have a crash that only occurs when the app is built for ad-hoc and distributed through test flight. The relevant crash report details are: Date/Time: 2012-06-11 09:00:34.638 +0800 OS Version: iPhone OS 5.1.1 (9B206) Report Version: 104 Exception Type: EXC_BAD_ACCESS [...] read more
An application is generating a core file. Here is the core info. The error stack was obtained and the objective is to check the data content within the myStruct variable as this is what gets passed into myFunction when the core occurs. (gdb) where #0 0x000000000041bba1 in myFunction (myStruct=0x7ffff9dd0c20) at [...] read more
Would appreciate any suggestions, using SDK6.1 with Xcode 5 on OS 10.8 The app crashes right after the splash and does not get to the debugger at all. this happens on the TestFlight released version as well. Tried on another computer with same results. Even tried to create a new [...] read more
I’m using Xcode 4.6.3 to build a library for OS X. My project includes a target called LibraryTest, which is a command-line app to test the functionality of the library. Both the library and the test app build fine, but when I try to run the app it quits immediately [...] read more
I'm trying to work on a small Xamarin.iOS app using Visual Studio 2013, a Mac build host, and a physical iPhone for testing. Everything was working fine before new years. I upgraded to Xamarin 4 on the Mac, the PC, and in Visual Studio. I don't know if that has [...] read more
When I call logoff, it works. But shutdown and restart don't work. Everything looks OK. I looked at other examples on SO and else where and the code looks pretty uniform across most places. So I'm thinking it might be something other than the code. I'm running as admin and [...] read more
I'm using Chapel for a project in my class and I am trying to do multilocale executution with my two Nvidia Jetson nano boards. Following this tutorial https://chapel-lang.org/docs/usingchapel/multilocale.html#readme-multilocale. I keep getting errors when I try to run the hello executable. I run the code by doing "./hello -nl 2" Here [...] read more
I've encountered this dreaded problem popping up on an Objective-C project when I attempt to run unit tests. I've tried all of the following (as per various SOF postings): * Clearing derived data * Deleting all simulator setups in ~/Library * Restarting XCode * Restarting MBP * Resetting the simulator [...] read more
When install pandas, it requires numpy to be installed and on installing it gives following error: Processing numpy-1.9.1.zip Writing c:\cygwin64\tmp\easy_install-4x5clr\numpy-1.9.1\setup.cfg Running numpy-1.9.1\setup.py -q bdist_egg --dist-dir c:\cygwin64\tmp\easy_install-4x5clr\numpy-1.9.1\egg-dist-tmp-rz7g3x non-existing path in 'numpy\\distutils': 'site.cfg' non-existing path in 'numpy\\f2py': 'docs' non-existing path in 'numpy\\f2py': 'f2py.1' non-existing path in 'numpy\\lib': 'benchmarks' Running from numpy source [...] read more
Here is minimal test example, which makes my Visual Studio 2010 crashed during linkage in Release mode. (just an example, no meaningful code) #include <iostream> #include <functional> struct Foo { typedef std::function<void()> Func; Func m_func; float m_f; Foo(Func func, float f) :m_func(func), m_f(f) { func(); } }; struct Bar { [...] read more
I'm having this very disturbing problem when running our app in the device. Everything goes fine with the Debug scheme but with the Distribution profile (the one with the AdHoc certificate for code signing) the app crashes and the only error I get in the device's login this one: Tue [...] read more
BACKGROUND I'm now forced to use open source proprietary driver (radeon kernel module) since after the last upgrade I got Xorg version 7.7 and fglrx just doesn't support it. For what concerns the normal desktop usage this driver works fine, even better than fglrx, I even have high resolution frame [...] read more
I'm trying to make JonesForth run on a recent MacBook out of the box, just using Mac tools. I started to convert everything 64 bits and attend to the Mac assembler syntax. I got things to assemble, but I immediately run into a curious segmentation fault: /* NEXT macro. */ [...] read more
I am writing a plug-in for an existing application. Implementation language is C. However, the actual functionality is implemented in Java. For this reason, I am using Java Native Interface (JNI) to create a JVM instance from within C. I can find the appropriate Java class and create an instance. [...] read more
Is it okay to cast function location with void pointer though function pointers size is not always the same as opaque pointer size? I already did search about opaque pointers , and casting function pointers . I found out function pointers and normal pointers are not the same on some [...] read more
I work with zedboard and vivado v2017.3. I am trying to send data stored in a register(slv_reg0 in PL section of Zynq) pointed by baseaddr_p in the following program. I use lwip echo server application to read this address and send it to the PC via Ethernet. This part of [...] read more
My lab recently procure an HP (Aruba) 2920 24G and I was told to test it out on an OpenDaylight controller. First, I setup the OpenDaylight Carbon (0.7.2) with dlux features, odl-mdsal-apidocs, odl-restconf, and odl-l2switch-switch installed. The Opendaylight can communicate with my other switches including an SBC running an Open [...] read more
I need help solving a problem where I experience an occasional EXC_BAD_ACCESS crash that occurs in the AudioToolBox (AVAudioSessionPropertyListener) during transition between MPMoviePlayerController and MPMusicPlayerController. The following is the call trace: OS Version: iPhone OS 5.1 (9B176) Report Version: 104 Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x00000009 Crashed [...] read more
I have two different systems running restcomm smsc gw. I'm trying to configure one as a server side and other as client side. Logs for both PC are given below: SERVER ERROR 10:40:32,975 INFO [SmppServerConnector] (SmppManagement) New channel from [172.31.130.126:33712] 10:40:33,020 INFO [UnboundSmppSession] (SmppManagement.UnboundSession.172.31.130.126:33712) received PDU: (bind_transceiver: 0x0000002F 0x00000009 0x00000000 [...] read more
I'm trying to compile a minimal ARM cortex M3 example and am seeing a discrepancy I don't understand between the symbol table of my code and the address that the byte code seems to be jumping to. Startup.s (my minimal assembly code) .cpu cortex-m3 .thumb .thumb_func .global _start _start: stacktop: [...] read more
While running the code listed at the end, i get a break at the last line FREE(pTcpTable); and if i continue this error shows up: "Unhandled exception at 0x7737096E (ntdll.dll) in netMon.exe: 0xC0000005: Access violation reading location 0x00000009." crt0dat.c opens and this code is shown: void __cdecl __crtExitProcess ( int [...] read more
There is an AudioUnitV3Example sample code by Apple for iOS. As well as Audio Unit Extension OS X target template in Xcode (7.2). I created (for debug purpose) simple AUv3 PlugIns Host which used AVFoundation API to build playback engine graph. It is working well with standard AudioUnits shipped with [...] read more
How can Install a windows services with c# code I have using the Administrator privilege account I have? Please note that:- The following classes are download from different sources and from other programmers work from this site. I don't want to claim any of this work as mine. I am [...] read more
I'm trying to trace my segmentation fault using gdb and I'm unable to find the exact line where the fault is happening. (gdb) backtrace #0 0x00110402 in __kernel_vsyscall () #1 0x007a5690 in raise () from /lib/libc.so.6 #2 0x007a6f91 in abort () from /lib/libc.so.6 #3 0x007dd9eb in __libc_message () from /lib/libc.so.6 [...] read more
The question is: since it is obvious that my assembly is not mixed mode, what else can cause "Mixed mode assembly" exception? Details: I have a pure .net executable assembly hosts wcf services. I checked that it is pure .net assembly by the method found in this post Also I [...] read more
On HP Proliant DL G6, one disk in RAID 1 on P410 array broken. It was HP EG0300FBDBR. I changed it on compatible HP model - HP EG0300FAWHV. (both 300 Gb, 10K) But HP Array Configuration Utility still show me - that new HP EG0300FAWHV - 300 GB 2-Port SAS [...] read more
Until recently I was using Fedora 26 with kernel 4.13.16-202.fc26.x86_64 without problems. But the last two kernel upgrades (4.14.4-200.fc26.x86_64 and 4.14.5-200.fc26.x86_64) are giving me kernel panic. This is the only thing I was able to get before the screen froze: [0.061000] ? acpi_sleep_proc_init+0x2a/0x2a [0.061000] ? set_debug_rodata+0x1?/0x1? [0.061000] acpi_bus_scan+0x?f/0x90 [0.061000] acpi_scan_init+0xea/0XZZC [...] read more
I am trying to use CMSIS-pack with my new F103 project. Until now, I was using auto-generated project structure, just moving some files elsewhere and everything worked fine. Now with CMSIS-pack, although the code is successfully compiled, I get some "Load Failed" error during downloading the .elf into the MCU. [...] read more
What's the best approach to convert 0x00000009 to 1970-01-01-00:00:09? I've tried FROM_UNIXTIME but it returns 1969-12-31 22:00:09. From http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_unix-timestamp, I understand there is a time zone conversion going on. read more
I have been trying to build the iOS version using Nativescript sidekick for two days now without luck. It used to build just fine in the past. Environment information 1. Sidekick Version: 1.19.2-v.2019.11.18.2 (latest) 2. NativeScript CLI version: 6.2.2 3. CLI extension nativescript-cloud version: 1.19.3 4. CLI extension nativescript-starter-kits version: [...] read more
Now I'm studying Threads and my task is to make a counter, which will add number from 0 to 9 to TextView with the help of Loader. Of course, I know that it isn't the best variant to use Loader for such tasks, but I'd like to understand how does [...] read more
To correct a problem with the name of the value for the enum, after searching, that I need to modify the TLB file of my DLL. The first step that I need to do is to create the IDL file. So I use Oleview to create the file. Before doing [...] read more
Trying to create the windows service programmatically. Found out the reference from stackoverflow to do it. However the parameter filename in InstallAndStart method expects a .exe In my case, my WCF project which i want to host as windows service is a Service library project. Hence the output is in [...] read more
I'm using Visual Studio 2017 and I have this code in C. When I run in VS it fails, but when I compile with gcc it runs perfectly. The error is this: > Exception thrown at 0x779BE643 (ntdll.dll) in GestaoFinanceira.exe: > 0xC0000005: Access violation reading location 0x00000009. This is my [...] read more
I am using the latest version of Restcomm SMSC (smscgateway-7.3.153) (available here: https://github.com/RestComm/smscgateway/releases/tag/7.3.153). I used the binary version and not the source code. I have got it up and running ad it communicates with Cassandra which is hosted on a different machine appropriately. I have registered an ESME as a [...] read more
I need the bytes of a BIN file converted to a unsigned int, in this format (JavaScript): p.write4(shellcode.add32(0x00000000), 0x00000be9); p.write4(shellcode.add32(0x00000004), 0x90909000); p.write4(shellcode.add32(0x00000008), 0x90909090); p.write4(shellcode.add32(0x0000000c), 0x90909090); p.write4(shellcode.add32(0x00000010), 0x0082b955); p.write4(shellcode.add32(0x00000014), 0x8948c000); p.write4(shellcode.add32(0x00000018), 0x415741e5); p.write4(shellcode.add32(0x0000001c), 0x41554156); p.write4(shellcode.add32(0x00000020), 0x83485354); p.write4(shellcode.add32(0x00000024), 0x320f18ec); p.write4(shellcode.add32(0x00000028), 0x89d58949); p.write4(shellcode.add32(0x0000002c), 0x64b948c0); p.write4(shellcode.add32(0x00000030), 0x77737069); p.write4(shellcode.add32(0x00000034), 0x49000000); p.write4(shellcode.add32(0x00000038), 0x4120e5c1); p.write4(shellcode.add32(0x0000003c), 0x000200bc); p.write4(shellcode.add32(0x00000040), [...] read more
I am getting this error while adding a fragment to GridLayout. The method getFieldContainer searches an existing layout or inflates a new one for the category name and then returns its GridLayout container. findViewById returns a valid layout but still fragment is unable to find the view with the same [...] read more
I'm totally new in COM programming. I have big problem. I’m trying to handle events from CANoe application via COM Server. Firstly I tried do it in native C++ but without results. Now I’m trying it by using ATL. I'm doing something wrong but I don’t have any idea what. [...] read more
I am trying to use DeviceIoControl with FSCTL_SET_ZERO_DATA control code in C#. I created the file C:\tmp\test.txt and inside it I put the text "aaaa". I ran the code and I received error number: 87 According to MSDN: "The parameter is incorrect." enter image description here [https://i.stack.imgur.com/3To65.png] I supposed that [...] read more
I'm building a Xamarin.Forms / iOS app that is going to usually be used on the iPhone Plus but am unable to debug the app on this particular device. I can run/debug my app on the iPhone Plus simulator (9.2) without a problem. I can also deploy it to a [...] read more
I developed a pretty straight forward SSIS package (in VS2005 w/ .Net Framework V 2.0.50727 SP2) that gets a list of users to email, starts a for-each loop container and then executes a script task to retrieve user specific data and email it out to the user. When I run [...] read more
The following is the crash log I get.But,I don't konw what caused this crash.I'm using 7.2.1 version of Xcode and iOS 9.2.1,device is a iPod touch.I call a third SDK's init method,then the app crashed.Thanks The init method: [m_SoHaSDKClass initWithGameDelegate:self application:application]; The device log: Mar 10 11:51:27 ceshi-9 SpringBoard[48] <Warning>: [...] read more
I want to encapsulate some of the functionality of my app in a dynamic framework. In this framework, I want to use Realm to persist some of the data. Naturally, the way to test frameworks is with XCTest. However, any use of Realm aside from the import statement in my [...] read more
I am using python 2.7.8 in windows 8 and on cmd I wrote easy_install pandas. After some processing it gave me an error and asked me to download vcpython27. on cmd: C:\Python27\Scripts>easy_install.exe pandas Searching for pandas Best match: pandas 0.16.2 Processing pandas-0.16.2-py2.7-win32.egg pandas 0.16.2 is already the active version in [...] read more
I wanted to clean up some code , where a a.c file was included in another b.c file. I wanted to build the a.c file with the whole project , so that all the files in that project can access the functions defined in a.c file. After building the a.c [...] read more
I just renamed my project and also in the project.pbxproj renamed my product to the new name. Now I am getting codesigning error when trying to debug on the phone. How come and how do I fix this? I have defined the profile to the same as on my phone [...] read more
ios memory leak when accessing phone book here is my orignal question and this is crash log. Memory leak problem has been resolved but application is crash when I access the contact and pop to navigation controller again push and accessing the contact, repeating this process 3-4 time and app [...] read more
I've always used smslib to connect to my SMS provider. My SMS provider has a SMSC, and I connect in transmitter mode (not transceiver). I'm trying to connect via Kannel, with this configuration: group = core admin-port = 13000 smsbox-port = 13001 wapbox-port = 13002 admin-password = dad admin-deny-ip = [...] read more
I've created a USB bootable drive to install Ubuntu server. I make it all the way to a menu similar to this: Ubuntu server menu Once I select any of the options, though, I get the exit-code/error: end Kernel panic - not syncing: Attempted to kill init! exitcode=0x00000009 Is there [...] read more
I have run into a dead end here. I am trying to install an Intel AX200 WIFI + Bluetooth network card onto my desktop PC. I connected it to a PCIe port that had more slots than needed but I read that this should be fine. Additionally, a cable from [...] read more
Tl;dr: Windows 7 says my copy is not genuine (bought the pc with the OS second hand so I cannot know if it is a legitimate problem or not). I cannot access normal Windows, only safe mode. Anti-spyware and anti-virus find nothing that may be causing this and it all [...] read more
I'd like to create a volume shadow copy (vshadow 2.2) from within Cygwin over ssh: $ ./vshadow.exe -p -nw C: (...) - Setting the VSS context to: 0x00000019 Creating shadow set {a5e0883e-9485-4243-8276-1ac7c569ab6a} ... - Adding volume \\?\Volume{218a908d-1e3f-11df-a215-806e6f6e6963}\ [C:\] to the shadow set... Creating the shadow (DoSnapshotSet) ... ERROR: COM call [...] read more
Kernel is 5.8, wifi driver is the intel iwlwifi version for ax200 requiring a kernel of at least 5.1 and the wifi card appears in lspci -k but nothing I've tried is working as I can't find any documentation from intel surrounding this or any other thread someone has asked, [...] read more
We are trying to set up Zephyr on an nrf52832 to run a HCI interface. Due to hardware limitations we are obliged not to use flow control and thus the H:5 HCI (three wire UART) together with bluez 5.54 We have disabled flow control in the DTS overlay. We have [...] read more
I'm an absolute total beginner at coding please help? I'm trying to make a simple calculator and this is what the professor was telling me to do but it isn't working for some reason that I can't figure out... This is my activity main XML. I put everything in linear [...] read more
I want to create Calculator Application, and I just want to make Equal function with exp4j that will calculate string of characters, but I have problem with this. I don't know exp4j too much and I just don't what to changa, or add to work propertly. bEqual.setOnClickListener(new View.OnClickListener() { @Override [...] read more
I get this from the Console from the iPhone May 29 13:26:01 iPhone-5S securityd[550] <Notice>: MS:Notice: Installing: (null) [securityd] (793.00) ��May 29 13:26:01 iPhone-5S securityd[550] <Notice>: MS:Notice: Loading: /Library/MobileSubstrate/DynamicLibraries/rwxlib.dylib ��May 29 13:26:01 iPhone-5S securityd[550] <Notice>: MS:Notice: Loading: /Library/MobileSubstrate/DynamicLibraries/xCon.dylib ��May 29 13:26:02 iPhone-5S mobile_house_arrest[555] <Error>: Max open files: 78 ��May 29 [...] read more
I am facing some weird issue, appreciate any help on this. I am using VS 2019 and .Net Core 2.2. In VS created new web api and if I pass integer value 5 in the controller the id value shows as hex ( id = 0x00000005) also I declared integer [...] read more
I'm trying to call a registered COM interface (Inproc dll) in an Eclipse C++ environment (MinGW GCC toolchain). I therefore don't believe that I can simply import the dll typelib the way I typically would in Visual C++. I'm trying to define the interface myself to simplify the function calls [...] read more
I'm trying to use a function from a DLL in PowerShell. I currently have the code below, though it leads to a crash when calling the function. I'm fairly new at this, so any help is appreciated. The purpose of the code is to use EloGetDiagnosticsData() in PowerShell to return [...] read more
So I've been learning basics of hacking by the book Hacking: The Art of Exploitation, 2nd Edn by Jon Erickson (2008), since I wanna be a penetration tester in future. This book is great. Still there are problems, because all examples are being run on x86 processor. My processor is [...] read more
System.DirectoryServices contains the class/method DirectoryEntry.MoveTo(..). The only documented exception is an InvalidOperationException if the target DirectoryEntry isn't a container. I'd expect there to be all sorts of other potential exceptions, especially with permissions. Under the hood, .MoveTo() calls DirectoryEntry.ContainerObject.MoveHere(this.Path, newName); where DirectoryEntry is the new target location. Which calls: internal [...] read more
I have already compiled opencv on the Mac and created a MacOS application based on it. It currently works on a variety of Macs for the past couple months. However, my Macbook is a Late 2013. Right now, no users with Early 2013 Macbooks or older can run it. I [...] read more
First time Kannel user here. Trying to set up a kannel sms gateway on our office network but can't seem to establish a connection with the smsc. Please note that smsc hosts can be telnet on the given port from our network. Below is the bearerbox log. 2018-02-06 00:03:02 [9708] [...] read more
I'm trying to understand this examble about LDM and STM instructions, but I have a problem with the final result, here is the example: PRE r0 = 0x00009000 r1 = 0x00000009 r2 = 0x00000008 r3 = 0x00000007 STMIB r0!, {r1 - r3} MOV r1, #1 MOV r2, #2 MOV r3, [...] read more
I have this specific description of how to write a function called tim2string , I have written this function but I'm unsure if I'm doing as it's Say's in the description. I have tried to run my code on MARS and I get this ERROR.NOTE the tim2string is added in [...] read more
I wrote a kernel module which works as expected. But I want that to be loaded at the beginning of the boot process. So I moved this code to OpenWRT/build_dir/target-i386_geode_eglibc-2.19/linux-x86_alix2/linux-3.10.49/arch/x86/platform and my code is here: #include <linux/init.h> #include <linux/module.h> #include <linux/kernel.h> #include <linux/gpio.h> #include <linux/delay.h> #include <linux/cs5535.h> MODULE_AUTHOR("Ramana"); MODULE_DESCRIPTION("POWER LED [...] read more
Problem: I am unable to launch my OSX app. Software versions: * XCode Version 8.1 (8B62) * macOS Siera 10.12.1 (16B2657) I've already tried: * I don't have any changes in my version control. * Also it works fine on my colleague's computer * I've already tried to clean, Also [...] read more
I'm struggling trying to launch a project but I can't. The project runs perfectly on simulator but when I try it on iphone 6 (IOS 9.3) fails, the project is installed on the desired device but is not launched. I've deleted the derived data but I don't know what can [...] read more
I'm trying to debug an handoff issue in Xcode, but the debugger disconnects every time I go to the device homescreen. This happens on both the simulator and an actual device. I have other apps where it works correctly; that is, it continues to debug when I go to the [...] read more
I really could need some help... I try to use a today extension to get some stuff and refresh a cell with data from a SOAP request. It works like a charm in simulator but on a actual device (iPhone 6 Plus) widget updates the cell and shortly afterwards switches [...] read more
This is how XCode looks when the app first runs on the phone... enter image description here [https://i.stack.imgur.com/DbukD.png] Here's the project navigator. I added all the frameworks because another answer suggested it, but it didn't need them before. enter image description here [https://i.stack.imgur.com/uQeiDl.png] Here is the device log... > Jun [...] read more
Been getting a strange error recently and hope to find a solution here. On double-clicking home and immediately re-entering the app a crash occurs. I've been looking around for a solution in other SO posts but there doesn't seem to be any that come close to this strangeness. The project [...] read more
Google and stackexchange finds hit upon hit where the dlls aren't compatible. This time, they are. It's my DLL. I know full well it's compatible. The dll file is placed in lib/netstandard1.5 Nuspec file reads: <?xml version="1.0" encoding="windows-1252" ?> <package > <metadata> <id>redacted.dll</id> <version>1.0.0-alpha</version> <authors>joshudson</authors> <owners>joshudson</owners> <projectUrl>https://sourcecontrol.internal.lan<projectUrl> <iconUrl>http://ICON_URL_HERE_OR_DELETE_THIS_LINE</iconUrl> <requireLicenseAcceptance>false</requireLicenseAcceptance> <description>Redacted</description> [...] read more
I have to decode this assembly language for the bomb lab: Dump of assembler code for function phase_5: 0x08048e79 <+0>: push %ebx 0x08048e7a <+1>: sub $0x28,%esp 0x08048e7d <+4>: lea 0x1c(%esp),%eax 0x08048e81 <+8>: mov %eax,0xc(%esp) 0x08048e85 <+12>: lea 0x18(%esp),%eax 0x08048e89 <+16>: mov %eax,0x8(%esp) 0x08048e8d <+20>: movl $0x804a9de,0x4(%esp) 0x08048e95 <+28>: mov 0x30(%esp),%eax [...] read more
I am facing a strange issue on 10.8. My client is reporting that build isn't working on 10.8. I have tested the build on 2 systems both systems have 10.11 installed. in 10.8 log its saying Library not loaded: @rpath/libfmod.dylib reason: image not found I have added "@executable_path" in Runtime [...] read more
I'm currently working on the binary bomb lab and I'm very confused. I tried asking my friends and searching online but it seems like that my bomb is different. Dump of assembler code for function phase_5: 0x08048d7e <+0>: push %ebp 0x08048d7f <+1>: mov %esp,%ebp 0x08048d81 <+3>: push %edi 0x08048d82 <+4>: [...] read more
Note:Answering my own problem here to help people in future When running an application after installing it on a new PC and using ConnectDirect to transfer files from Windows to Unix I am seeing the error message: > System.Runtime.InteropServices.COMException (0x00000009): Could not establish > a connection to server Could not [...] read more
I've been struggling getting the output formatted the way I want but I'm just not using xsl often enough. This need to generate a table, it only extracts the information if there is a value in the node named 'Active' but when there is no data or value named 'Counted [...] read more
The following example from the book Arm System Developers Guide shows an STM increment before instruction followed by an LDM decrement after instruction. PRE r0 = 0x00009000 r1 = 0x00000009 r2 = 0x00000008 r3 = 0x00000007 STMIB r0!, {r1-r3} MOV r1, #1 MOV r2, #2 MOV r3, #3 PRE(2) r0 [...] read more
I have two strings I want to compare. I was following the named piper server/client example of this page: http://msdn.microsoft.com/en-us/library/windows/desktop/aa365592%28v=vs.85%29.aspx Anyhow, in my "GetAnswerToRequest" I define a string like so LPTSTR option = TEXT("THIS IS A TEST"); and then I try to compare it to the pchRequest parameter, which is [...] read more
Well i'm in the situation where my dll file passes all the tests but somehow on the production server it sometimes does crash at the least expected moments. There is actually no possibility to run a debugger but there is a generated stacktrace file: An exception occured at address 0x0045DA51 [...] read more
Using xcode 5.1.1, and trying to debug my app on a jailbroken iphone 4 (7.1.2). I installed Jailcoder (from the facebook page) and patched both my xcode and my project with it. The project is just a simple view application (trying to get that to work first). I run the [...] read more
I coded a calculator for Android, but when I press the "equals" button while the app is running in the emulator, an error comes in the LogCat and the app closes. Please help me fix the error. Here's the LogCat Output: 07-25 01:34:13.213: I/Choreographer(1387): Skipped 39 frames! The application may [...] read more
Hi I have a Windows phone app which is getting a number of crashes reported by the dev center. I recently did an upgrade which included some minor changes and the moving of some common code from a Silverlight class library to a Windows phone class library (so that I [...] read more
My iPad crashed a few times when opening this Todo App. It freezes and I have to do a hard reboot, every time. I don't know yet how to reproduce it, but it has happened right after opening the app (probably when opening it again right after closing it). Here's [...] read more
I'm running into an odd problem trying to call DeviceIOControl with FSCTL_GET_RETRIEVAL_POINTERS in C#. I've tried the code from Jeffrey Walls blog as well as my own code but keep running into the same problem. The problem seems to be in the Extents structure in RETRIEVAL_POINTERS_BUFFER. When Extents[0]->NextVcn is 1 [...] read more
I have a text view that has to be updated on execution time. This text view is defined by the following xml: <TextView android:id="@+id/agi_val" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="TextView" /> In the activity code, i acces to this (and other TextViews) like this: private TextView AGI; ///< Some stuff protected void onCreate(Bundle [...] read more
Here is my understanding of what the code is doing, and how I'd like to solve it: First I need to find a string, and then reverse engineer that string, based on the 16-byte lookup table that I have found. I do know that the values of these "offsets" must [...] read more
I have this coding: *(uint32_t*) 0xFFFFFFFF8269C07Cull=0; *(uint32_t*) 0xFFFFFFFF8269B56Full=0; And I want to convert this to something similar to: function doWrite(write) { setBase(write); u32[0] = 0x0006b3e9; u32[1] = 0x0f2e6600; u32[2] = 0x0000841f; u32[3] = 0x90000000; u32[4] = 0xbf495741; u32[5] = 0x263ffff8; u32[6] = 0x00000009; u32[7] = 0x413f8b4d; u32[8] = 0x5f41d7ff; u32[9] [...] read more
I've been looking over my code for awhile now, and I can't figure out why this error keeps coming up. It's probably something really simple, but I just can't figure it out... "Unhandled exception at 0x00FB59E6 in program.exe: 0xC0000005: Access violation writing location 0x00000009." It happens on the third time [...] read more
I developed an application with Xamarin studio. It runs completely fine with the iPhoneSimulator. I was able to run Ad-Hoc | Iphone and it compiles and actually saves the IPA directly to my phone. When I click the app it launches the load screen and crashes within 1 second. I've [...] read more