Crash of putpwent API.

Hi,
I am using the putpwent and putspent API for editing the /etc/passwd and /etc/shadow file.
I have a funtion which takes userName and password
OsCreateUser (char* userName , char* passwd , uid_t uid)
There are two scenarious
(i) I am dynamically allocating memory for
struct passwd and
struct spwd
in this case I my code is like
ptr = (struct passwd*) malloc (sizeof (struct passwd) );
sptr = (struct spwd*) malloc (sizeof (struct spwd) );
if ( (fp = fopen ("/etc/passwd","a")) == NULL){
return (errno);
ptr->pw_name = strdup(userName);
ptr->pw_passwd = strdup("x");
ptr->pw_gid = 1;
ptr->pw_gecos = strdup("User");
ptr->pw_uid = uid;
ptr->pw_dir = strdup("/false");
ptr->pw_shell = strdup("/bin/false");
putpwent (ptr,fp);
fclose (fp );
if ( (fp = fopen ( "/etc/shadow","a")) == NULL ){
return (errno);
/*Setting the default values */
sptr->sp_namp = strdup(userName);
sptr->sp_pwdp = strdup("345dfkjgh84");
sptr->sp_lstchg = 14202;
sptr->sp_min = -1;
sptr->sp_max = -1;
sptr->sp_warn = -1;
sptr->sp_inact = -1;
sptr->sp_expire = -1;
sptr->sp_flag = 0;
putspent (sptr,fp);
if ( (fclose(fp) )!= 0 ){
return (errno);
there is a code to free the memory.
======================================
And after when the fuction is called again then i allocate memory for ptr and sptr pointers.
========================================================================
The problem is that if I call this function many times then this API putpwet crashes.

Have you run it in a debugger and see where it dies? putpwent basically does a bunch of fprintfs, so if it dies, either it's being passed bogus parameters, or malloc was screwed up (like freeing something twice). You could try running your app with watchmalloc (man watchmalloc) with MALLOC_DEBUG=RW and see if it complains.

Similar Messages

  • Adobe Reader XI crashes on PPKLite.api with failure CryptFindLocalizedName.

    When Other language version Adobe reader XI is installed to English version Windows, it crashes on PPKLite.api with failure CryptFindLocalizedName.
    It doesn't have the check routine which it is null, and it crashes because it calls 'wcslen(NULL)'
    D:\Program Files\Adobe\Reader 11.0\Reader\plug_ins\PPKLite.api
    28058DFA  C7066C9A4428         
    mov
    dword ptr [esi],L28449A6C
    28058E00  897E10               
    mov
    [esi+10h],edi
    28058E03  885E14               
    mov
    [esi+14h],bl
    28058E06  897D0C               
    mov
    [ebp+0Ch],edi
    28058E09  FF750C               
    push
    [ebp+0Ch]
    28058E0C  C645FC01             
    mov
    byte ptr [ebp-04h],01h
    28058E10  FF15BC155928         
    call
    [CRYPT32.dll_DelayImport_CryptFindLocalizedName]
    28058E16  8365FC00             
    and
    dword ptr [ebp-04h],00000000h
    28058E1A  89450C               
    mov
    [ebp+0Ch],eax <--- eax=0 !!!!!!!!!!!!!!!!!!!!
    28058E1D  FF750C               
    push
    [ebp+0Ch]
    28058E20  FF15DCB34128         
    call
    [MSVCR100.dll!wcslen]
    28058E26  59                   
    pop
    ecx
    28058E27  8B4E04               
    mov
    ecx,[esi+04h]
    28058E2A  8D440004             
    lea
    eax,[eax+eax+04h]
    28058E2E  50                   
    push
    eax

    My environment XPSP3 with changing user and system locale to Japanese.
    But , It is resolved.
    It becomes  no error when I install MUI version Reader XI.
    But sometimes My Windows XP SP3 shows the popup application Error dialog when Adobe reader XI is terminating. It seems to have some bugs.

  • Acrobat 9 and Orbix2000 Issues (Crash on Acrobat API)

    I build a plugin using Acrobat 9 SDK.  The plugin starts a CORBA (Orbix2000) instance and a call back function in CORBA.  The same plugin works fine with Acrobat 8. In Acrobat 9.x (9.1 and 9.2), after the call back function in CORBA, most of the Acrobat API's are not accessable; usually I got "unhandled exceptions".  All the Acrobat menu items are fine even my plugin menu items can be used.
    The following one example on AVAlert()) call.
    void myCallback()
         // start an instance of CORBA
         // set my call back routine
         handleMyEvent();
    void myTest()
        myCallback();
    void handleMyEvent()
       // This is SDK Sample code
        ASAtom Name = ASExtensionGetRegisterName(gExtensionID);  //ok
        const char * name = ASAtomgetString(Name); // ok get my plugin name
         AVDoc avDoc = AVAppGetActiveDoc(); // ok
        if ( avDoc != null )
              char     str[256];
              PDDoc pdDoc = AvDocGetPDDoc(avDoc);  //ok
              int numOfPages = PDDocGetNumPages(pdDoc); // ok
              sprintf(str, "Number of pages = %d", numOfPages);
              // I added the follwing
              AVSysBeep(2)  // ok
              AVAlert(str);     // crash here in Acrobat 9.x but not in Acrobat 8.x
    It looks like in Acrobat 9.x, the AVAlert's resource handle is gone or there is no AVAlert at the location that suppose to be.
    Again, the same routine works in Acrobat 8.x.
    Any suggestion from anyone or from Adobe's folks?

    Acrobat 8 only had a single instance of the application running no matter how many documents.  Acrobat 9 instantiates separate instances for each document.  Could you be assuming (or could the CORBA stuff be assuming) single process model?

  • Application crashes when trying to open jpg with Desktop API

    Hi, i would like to open jpg, or gif files using Desktop API, and the application crashes.The Desktop API is supported by my OS, because txt files, or file directories can be opened, mails can be sent, browsing is also supported.
    Only jpg and gif, and i think other picture formats cannot be opened.
    Obviously ACDSee and other picture viewing programs are installed in my computer.
    The corresponding application code can be found at the bottom of the page of http://www.awprofessional.com/articles/article.asp?p=661371&seqNum=2&rl=1
    my code:
    if(Desktop.isDesktopSupported()){
    Desktop desktop=Desktop.getDesktop();
    try
    desktop.open (fileToOpen);
    catch (IOException ioe)
    JOptionPane.showMessageDialog (frame,
    "I/O problem");
    catch (IllegalArgumentException iae)
    JOptionPane.showMessageDialog (frame,
    "File doesn�t exist");
    fileToOpen is obviously a File.
    Thx for the help in advance.

    Hello Ercoupe. Welcome to Apple Discussions.
    If this is being caused by an overly large Mailbox, click on the link below provided by Allan Sampson, for a possible solution.
    MBOX Breaker Script
    Message was edited by: roam

  • What is the problem when opening jpg files using Desktop API

    Hi, i would like to open jpg, or gif files using Desktop API, and the application crashes.The Desktop API is supported by my OS, because txt files, or file directories can be opened, mails can be sent, browsing is also supported.
    Only jpg and gif, and i think other picture formats cannot be opened.
    Obviously ACDSee and other picture viewing programs are installed in my computer.
    The corresponding application code can be found at the bottom of the page of http://www.awprofessional.com/articles/article.asp?p=661371&seqNum=2&rl=1
    my code:
    if(Desktop.isDesktopSupported()){
    Desktop desktop=Desktop.getDesktop();
    try
    desktop.open (fileToOpen);
    catch (IOException ioe)
    JOptionPane.showMessageDialog (frame,
    "I/O problem");
    catch (IllegalArgumentException iae)
    JOptionPane.showMessageDialog (frame,
    "File doesn�t exist");
    fileToOpen is obviously a File.
    Thx for the help in advance.
    Message was edited by:
    javahelps
    Message was edited by:
    javahelps
    Message was edited by:
    javahelps
    Message was edited by:
    javahelps

    My file association for jpg files is correct, if i click on a
    jpg, ACDSee starts immediately.Although I am a long time Windoze non-user, I vaguely remember that there's a difference between correct file-type association being set and some application starting at a mouse click on a file icon. I also vaguely remember Windoze file-type association mechanism uses a few action-types. Java Desktop should expect a specific action-type for the association.

  • Reader 10\Citrix\Sendmail.api

    With any version of version 10, as a published app through Citrix, when attempting to email the PDF as an attachment (throught the email button in Adobe) Adobe will crash with sendmail.api as the faulting module.
    In my testing I have found out the following:
    Locally (not citrix) it will NOT work in 10.1.1 and 10.1.2 ONLY when the Online Services is disabled via the cust wizard.  If I install default and the Online Services are available though Edit > Preferences it will work locally.
    Through citrix as a published app it will not work with ANY version of 10.  When I install it on the server with all default, online services enabled, it's available running locally (RDP) on the citrix server.  However when I launch the published app, online services are not available (when they are locally on the same server).
    Thanks for any help!!

    We use Outlook.
    It happens everytime with the conditions stated in the first post.
    I don't get an event in the event view UNLESS I am running an app we use called ADP, and adobe runs inside it.  HOWEVER if I run adobe strait up without ADP, it will still crash, just not put anything in the log.
    The event log shows:
    wsstart is the ADP program. but it's crashing due to Adobe reader.  Again, adobe will still crash when opened alone, just will not put anything in the event log

  • Acrobat XI Pro crashing, faulting module: TOUCHUP.API

    Acrobat XI Pro 11.0.4.63 (running on W7 Pro + SP1, 64-bit) has suddenly begun to crash when moving text fields in forms. I am now unable to add or edit any text in text fields of any PDF form. No updates, installations or system changes were made prior to, or at the onset of, this issue
    I have attempted: Disable antivirus; use safe mode; repair install; remove faulting plugin from reference path and repair install; uninstall + CClean registry + full reinstall; and full reinstall without any updates. Acrobat software is unusable in its current state. I would appreciate some help!
    Other Adobe products currently installed:
    AIR 3.5.0.1060
    Download Assistant 1.2.5
    Flash Player 11 ActiveX 11.9.900.117
    Flash Player 11 Plugin 11.9.900.117
    Reader XI 11.0.05
    Error from event logs:
    Log Name:      Application
    Source:        Application Error
    Date:          11/15/2013 11:44:48
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Description:
    Faulting application name: Acrobat.exe, version: 11.0.4.63, time stamp: 0x52288928
    Faulting module name: TouchUp.api, version: 11.0.4.63, time stamp: 0x5228881c
    Exception code: 0xc0000005
    Fault offset: 0x00018640
    Faulting process id: 0x16e0
    Faulting application start time: 0x01cee221f2859d70
    Faulting application path: C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat\Acrobat.exe
    Faulting module path: C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat\plug_ins\TouchUp.api
    Report Id: 3d30639b-4e15-11e3-966b-1803732675a0

    I have the same problem with KERNELBASE.dll but the procedure is the same, I change into something thanks
    Nome dell'applicazione che ha generato l'errore: Acrobat.exe, versione: 11.0.4.63, timestamp: 0x52288928
    Nome del modulo che ha generato l'errore: KERNELBASE.dll, versione: 6.1.7601.18409, timestamp: 0x53159a86
    Codice eccezione: 0xc06d007e
    Offset errore 0x0000c42d
    ID processo che ha generato l'errore: 0x18ec
    Ora di avvio dell'applicazione che ha generato l'errore: 0x01cf833d351b70ed
    Percorso dell'applicazione che ha generato l'errore: C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat\Acrobat.exe
    Percorso del modulo che ha generato l'errore: C:\Windows\syswow64\
    Nome dell'applicazione che ha generato l'errore: Acrobat.exe, versione: 11.0.4.63, timestamp: 0x52288928
    Nome del modulo che ha generato l'errore: KERNELBASE.dll, versione: 6.1.7601.18409, timestamp: 0x53159a86
    Codice eccezione: 0xc06d007e
    Offset errore 0x0000c42d
    ID processo che ha generato l'errore: 0x18ec
    Ora di avvio dell'applicazione che ha generato l'errore: 0x01cf833d351b70ed
    Percorso dell'applicazione che ha generato l'errore: C:\Program Files (x86)\Adobe\Acrobat 11.0\Acrobat\Acrobat.exe
    Percorso del modulo che ha generato l'errore: C:\Windows\syswow64\KERNELBASE.dll
    ID segnalazione: 730f9cd2-ef30-11e3-a912-00269e8fad5f
    ID segnalazione: 730f9cd2-ef30-11e3-a912-00269e8fad5f

  • Visual Studio 2005 crashes when referencing ALI 6.5 portal server API

    Visual Studio 2005 crashes when referencing ALI 6.5 portal server API
    We are building new portlets in .NET 2.0 to that access the ALI 6.5 server API and are experienceing the folowing scenario:
    I create a brand new project in Visual Studio (2005 with SP1 on Win2k3 R2 SP2) using the ALI Portal Project template that is provided with the application accelerator 1.1. This portlet will need to perform portal server searches so I begin by adding references to the following assemblies from C:\bea\alui\ptportal\6.5\bin\assemblies:
    openconfig.dll
    opencounters.dll
    opencache.dll
    openhttp.dll
    openssl.dll
    opentempfile.dll
    plumtreeserver.dll
    ptportalobjects.dll
    I then type in something like below to start up the portal server objects.
    protected void Page_Load(object sender, EventArgs e)
    IOKContext context = OKConfigFactory.createInstance("C:\\bea\\alui\\settings\\", "portal");
    PortalObjectsFactory.Init(context);
    this.Response.Write("Portal Objects Initiallized");
    Some moments later Visual Studio will crash. It has happened before I have entered any code, after I have started typing code and on builds. It seems intermittent but usually occurs within a minute of interacting with this Visual Studio project. I actually managed to build once and have had success accessing this page in Explorer to validate the portal server objects are getting initialized and referenced correctly.
    I thought this was a problem with my personal development environment. So I tried this on other machines: another Win2k3 ALI 6.5 dev portal server and another server with Visual Studio 2005 that I installed the 6.5 portal on just for testing this. The exact behavior listed above is occurring on three development machines here (crashing devenv.exe when portal references are made or loading a project with portal references). Since this does not seem to be isolated to a single development machine, is there any course of action that anyone would suggest to help solve this?
    thanks,
    Troy Rackley

    It turns out that this is only a problem with Visual Studio using the ALI templates or creating any projects using the "New... Web site" functionality of 2005. I was a ble to create a C#... ASP.net Web Application project and add the references to the idk and the local portal server APIs manually without devenv.exe crashes.
    So, the work around I have found if your projects needs to access both the portal server API and the remote API is to create the project with:
    New... Project... Visual C#... ASP.NET Web Application
    and NOT
    New... Web Site... ASP.NET Web Site (or ALI Portlet Project)
    Anyone know why this is the case?
    Thanks.
    Troy

  • Camera API problem after app crashed (winrt)

    Dear Sirs.
    I am developing windows phone runtime app (8.1) and testing it on my Nokia Limia 520 smartphone.
    I work with Camera Api (CameraPreviewImageSource from Nokia.Graphics.Imaging (Nokia Imaging SDK v 1.2.151 from NuGet)). But I think this package is not important info.
    Sometimes, after using camera api many times, for instance more than 30th the app crahes. The reason of app crash in my view not important too. (Of course it is important but I ask about restore phone state after the app crashes because it may happens after
    the memory consumption exception for example)
    I think because app crahes I don't call Dispose method for Camera Api and after I restart the app I see the green screen in the view where I use camera api to show user images from the camera. Also I see the green screen when I launch the standart app for capturing
    photo.
    It will fix only when I restart the phone.
    I have tried to do the following things:
    1) Add handler for OnSuspending event:
      private async void OnSuspending(object sender, SuspendingEventArgs e)
                var deferral = e.SuspendingOperation.GetDeferral();
                //cleanup camera resources
                await CleanupCaptureResourcesAsync();
                deferral.Complete();
    2) Add handler for OnUnhandledException event:
    private void OnUnhandledException(object sender, UnhandledExceptionEventArgs e)
            e.Handled = true;
            CleanupCaptureResourcesAsync().GetAwaiter().GetResult();
            Frame rootFrame = Window.Current.Content as Frame;
            if (rootFrame!=null) rootFrame.Navigate(typeof (BlankPage11), null);
    CleanupCaptureResourcesAsync method:
     public async Task CleanupCaptureResourcesAsync()
                if (CameraPreviewImageSource != null)
                    CameraInitialized = false;
                    await CameraPreviewImageSource.StopPreviewAsync();
                    CameraPreviewImageSource.Dispose();
                    CameraPreviewImageSource = null;
    It is works when I relaunch the app (manualy close and start it again). But when exception occurs it is not works.
    Could you please help me? How can I handle an exception, or if it not possible in some ways (as I have read at https://msdn.microsoft.com/en-us/library/dn532194.aspx) is there any way to restore Camera Api after app launched again (after crash)?
    Best regards,
    Aleksandr Terentev

    Thank you for your answer.
    However, I think the WinDebug wouldn’t help me enough. Because apps may crash in many situations. In my view I need either app global exception mechanism for the purpose of releasing camera api by calling Dispose method when an exception
    occurs or mechanism for restoring the state of the phone camera api after app has crashed.
    Yes, I can save the realtime app status but it wouldn’t help. Because when you try to initialize camera api again it wouldn’t work because the app didn’t call Dispose method and didn’t release the phone camera api.
    This situation is described in the MSDN article:
     “It is extremely important that you properly shut down and dispose of the MediaCapture object and related objects when your app is suspended. Failure to do so could interfere with other apps accessing the device's camera which will
    result in a negative user experience for your app.”  
    (https://msdn.microsoft.com/en-us/library/windows/apps/xaml/dn642092.aspx)
    But when the app crashes, OnSuspending event won’t be triggered, in my view. Therefore, after this no one app can use the camera and you have to restart your phone.

  • MEDIA ENCODER crash error: c:ame820_win\releases\external\adobe\mediacore\mediafoundation\api\  PLEASE HELP

    WORKSTATION HP Z600
    XEON E5645 12GB RAM NVIDIA QUADRO 2000 WIN 8.1 64bit
    BLACKMAGIC DESIGN ULTRASTUDIO SDI
    good morning,
    I have some problems with premiere pro cc 2014 release 2
    the most important is that Media Encoder crashes and the following error:
    c:ame820_win\releases\external\adobe\mediacore\mediafoundation\api\
    The second problem is that when I open the software you group all the windows on one side.
    Does anyone know what I need to do to solve these two problems?
    please help
    Andrea

    I do have a 64 bit OS - Win 7. The RAM does provide a noticable difference in performance - things are much more "snappy" now, which I'm enjoying, but hasn't eliminated my problem.
    The encoder does not stop at the same point, it seems to be quite random. I can view the files that I've exported (up until the point they cut off) and there's nothing going on in the clip that would be any sort of red flag - in other words, it is not stopping the coding at a point where a new color correction or title is being introduced, it had all happened previously. This is my first large project on CS4, and I don't have anything else to export at the moment!
    I'm not running premiere in multi-monitor mode: I've got a 24" widescreen monitor that is my sole monitor.
    I have COMBED the interwebs trying to find a resolution to this issue, and I am no where... I'm currently installing CS4 on a XP machine that I have that is pretty robust, and am going to try encoding on that, just to see if I get a different result.
    Any suggestions at all would be MOST appreciated!
    Thanks!

  • My system is crashing and vies the following:  Problem signature:   Problem Event Name:     APPCRASH   Application Name:     Acrobat.exe   Application Version:     11.0.10.32   Application Timestamp:     547e97af   Fault Module Name:     Accessibility.api

    My system is crashing
    Problem signature:
      Problem Event Name: APPCRASH
      Application Name: Acrobat.exe
      Application Version: 11.0.10.32
      Application Timestamp: 547e97af
      Fault Module Name: Accessibility.api
      Fault Module Version: 11.0.10.32
      Fault Module Timestamp: 547e9587
      Exception Code: c0000005
      Exception Offset: 00038776
      OS Version: 6.1.7601.2.1.0.256.48
      Locale ID: 1033
      Additional Information 1: 0a9e
      Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
      Additional Information 3: 0a9e
      Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt

    Hi Sue,
    Does this happen with any particular file or all files?
    Since the crash report above mentions accessibility.api, so are you working on any related function like adding tags etc. when Acrobat crashes?
    Disable all the 3rd party services working in the background and check.
    Regards,
    Rave

  • AcroForm.api Crash

    Hi Everyone,
    Some of our end-users have reported sporatic crashes when editing forms. I was able to pull an application crash dump. Has anyone seen this?
    Environment Details
    Windows 7 SP1 x64
    Adobe Reader 11.0.3.37
    Dump Details
    FAULTING_IP:
    +8931
    4a4320da ??              ???
    EXCEPTION_RECORD:  ffffffff -- (.exr 0xffffffffffffffff)
    ExceptionAddress: 4a4320da
       ExceptionCode: c0000005 (Access violation)
      ExceptionFlags: 00000000
    NumberParameters: 2
       Parameter[0]: 00000008
       Parameter[1]: 4a4320da
    Attempt to execute non-executable address 4a4320da
    PROCESS_NAME:  AcroRd32.exe
    ERROR_CODE: (NTSTATUS) 0xc0000005 - The instruction at 0x%08lx referenced memory at 0x%08lx. The memory could not be %s.
    EXCEPTION_CODE: (NTSTATUS) 0xc0000005 - The instruction at 0x%08lx referenced memory at 0x%08lx. The memory could not be %s.
    EXCEPTION_PARAMETER1:  00000008
    EXCEPTION_PARAMETER2:  4a4320da
    WRITE_ADDRESS:  4a4320da
    FOLLOWUP_IP:
    AcroForm!DllUnregisterServer+8931
    208efd70 0fb7c0          movzx   eax,ax
    FAILED_INSTRUCTION_ADDRESS:
    +8931
    4a4320da ??              ???
    DETOURED_IMAGE: 1
    MOD_LIST: <ANALYSIS/>
    NTGLOBALFLAG:  0
    APPLICATION_VERIFIER_FLAGS:  0
    FAULTING_THREAD:  00002018
    BUGCHECK_STR:  APPLICATION_FAULT_SOFTWARE_NX_FAULT_INVALID
    PRIMARY_PROBLEM_CLASS:  SOFTWARE_NX_FAULT_INVALID
    DEFAULT_BUCKET_ID:  SOFTWARE_NX_FAULT_INVALID
    LAST_CONTROL_TRANSFER:  from 208efd70 to 4a4320da
    STACK_TEXT: 
    WARNING: Frame IP not in any known module. Following frames may be wrong.
    003ef074 208efd70 087874c0 000001a7 000000aa 0x4a4320da
    003ef0cc 5fb82b57 087874c0 000001a7 000000aa AcroForm!DllUnregisterServer+0x8931
    003ef118 5f988aa8 08965fc8 087874c0 087874c0 AcroRd32_5f970000!CTJPEGDecoderRelease+0x43957
    003ef130 5faca7c8 080555c8 5fb82b0c 087874c0 AcroRd32_5f970000!AcroWinBrowserMain+0x1428d
    003ef17c 5faca5fb 087874c0 000001a7 000000aa AcroRd32_5f970000!DllCanUnloadNow+0x10ba8d
    003ef1d0 5faca360 087874c0 003ef1f8 000000ae AcroRd32_5f970000!DllCanUnloadNow+0x10b8c0
    003ef22c 5fac7e2b 000001ab 000000ae fe89097a AcroRd32_5f970000!DllCanUnloadNow+0x10b625
    003ef28c 5fadf909 000001ab 000000ae 003ef2bc AcroRd32_5f970000!DllCanUnloadNow+0x1090f0
    003ef29c 5f9c4680 00000000 00ae01ab 00000200 AcroRd32_5f970000!DllCanUnloadNow+0x120bce
    003ef2bc 5f9c430b 00000200 00000000 00ae01ab AcroRd32_5f970000!DllCanUnloadNow+0x5945
    003ef2d8 74d362fa 00080d7a 00000200 00000000 AcroRd32_5f970000!DllCanUnloadNow+0x55d0
    003ef304 74d36d3a 5f9c426e 00080d7a 00000200 user32!InternalCallWinProc+0x23
    003ef37c 74d377c4 0113367c 5f9c426e 00080d7a user32!UserCallWinProcCheckWow+0x109
    003ef3dc 74d3788a 5f9c426e 00000000 003ef61c user32!DispatchMessageWorker+0x3bc
    003ef3ec 013350ff 003ef640 00000000 00000000 user32!DispatchMessageW+0xf
    003ef61c 5fa09284 003ef640 fe890d66 00000000 QIPCAP+0x150ff
    003ef690 5fa0909b fe890d3e 00000000 0404dd68 AcroRd32_5f970000!DllCanUnloadNow+0x4a549
    003ef6c8 5f974695 fe890cb2 01360000 003efa04 AcroRd32_5f970000!DllCanUnloadNow+0x4a360
    003ef744 5f97410f 5f970000 01360000 01b71d30 AcroRd32_5f970000!AcroWinMainSandbox+0x5c2
    003ef764 0136d3a7 5f970000 01360000 01b71d30 AcroRd32_5f970000!AcroWinMainSandbox+0x3c
    003ef99c 013658d5 01360000 01b71d30 0000000a AcroRd32+0xd3a7
    003efa54 014267a7 01360000 00000000 010f22a2 AcroRd32+0x58d5
    003efae4 74ab336a fffde000 003efb30 77399f72 AcroRd32+0xc67a7
    003efaf0 77399f72 fffde000 7337c11f 00000000 kernel32!BaseThreadInitThunk+0xe
    003efb30 77399f45 01361039 fffde000 ffffffff ntdll!__RtlUserThreadStart+0x70
    003efb48 00000000 01361039 fffde000 00000000 ntdll!_RtlUserThreadStart+0x1b
    SYMBOL_STACK_INDEX:  1
    SYMBOL_NAME:  acroform!DllUnregisterServer+8931
    FOLLOWUP_NAME:  MachineOwner
    MODULE_NAME: AcroForm
    IMAGE_NAME:  AcroForm.api
    DEBUG_FLR_IMAGE_TIMESTAMP:  518e176b
    STACK_COMMAND:  dt ntdll!LdrpLastDllInitializer BaseDllName ; dt ntdll!LdrpFailureData ; ~0s; .ecxr ; kb
    FAILURE_BUCKET_ID:  SOFTWARE_NX_FAULT_INVALID_c0000005_AcroForm.api!DllUnregisterServer
    BUCKET_ID:  APPLICATION_FAULT_SOFTWARE_NX_FAULT_INVALID_DETOURED_BAD_IP_acroform!DllUnregisterServer+ 8931
    WATSON_STAGEONE_URL:  http://watson.microsoft.com/StageOne/AcroRd32_exe/11_0_3_37/518e18e3/unknown/0_0_0_0/bbbbb bb4/c0000005/4a4320da.htm?Retriage=1
    Followup: MachineOwner
    0:000> lmvm AcroForm
    start    end        module name
    20740000 213ed000   AcroForm C (export symbols)       AcroForm.api
        Loaded symbol image file: AcroForm.api
        Image path: C:\Program Files (x86)\Adobe\Reader 11.0\Reader\plug_ins\AcroForm.api
        Image name: AcroForm.api
        Timestamp:        Sat May 11 03:03:23 2013 (518E176B)
        CheckSum:         00000000
        ImageSize:        00CAD000
        File version:     11.0.3.37
        Product version:  11.0.3.37
        File flags:       0 (Mask 3F)
        File OS:          4 Unknown Win32
        File type:        2.0 Dll
        File date:        00000000.00000000
        Translations:     0409.04b0
        CompanyName:      Adobe Systems Incorporated
        ProductName:      Adobe Acrobat Forms
        InternalName:     AcroForm
        OriginalFilename: AcroForm.api
        ProductVersion:   11.0.03.37
        FileVersion:      11.0.03.37
        FileDescription:  Adobe Acrobat Forms Plug-In
        LegalCopyright:   Copyright 1984-2012 Adobe Systems Incorporated and its licensors. All rights reserved.
        LegalTrademarks:  Adobe, Acrobat and the Acrobat logo are trademarks of Adobe Systems Incorporated which may be registered in certain jurisdictions.
        Comments:         The Acrobat Forms plug-in allows users to create dynamic electronic forms for fill-in and transmittal.

    Hello,
    We're seeing this same issue in our environment was well. We have multiple users that have Acrobat Pro installed on their Windows 7 x64 workstations. The software crashes when copying and pasting data from one PDF, to the forms fields on another PDF.
    The crash dumps are here: https://www.dropbox.com/sh/bwoc10yvsm0217p/AAB21pAkTbiJ9HCPHDCbNCQHa
    I have contact Adobe support via phone multiple times and they have not at all been helpful. Considering are a volume license customer with nearly 1500 instances of Acrobat Pro installed, I'd like to get some sort of assistance on this issue sooner, rather than later. Additional crash dumps and environment information can be provided, if needed.
    Regards,
    Stephen

  • F-Bus v4.1 VB6 API crash on opensession

    I have an application that uses the Visual Basic (VB6) API to F-BUS.
    When the install pack for v4.1 is installed the application crashes on open session.
    I have tried the VB example project that is included in v4.1 pack and this does the same, clicking on open produces the Microsoft crash report.
    Using the v4.0 pack, this operation works ok.
    is it possible that the nifbstd.dll v4.1 has an error inside, or has broken compatibility with previous version? Perhaps that the API has changed and this is not yet updated in the documentation?
    Any one else with the same issue?

    Hi,
    Let me clarify several things with you.
    1. for ver 4.1, did you use the existed eample under folder of C:\Program Files\National Instruments\NI-FBUS\MS Visual Basic\example?
    2. for ver 4.0, the same questions: C:\Program Files\National Instruments\NI-FBUS\MS Visual Basic\example?
    3. What kind of error message do you get?
    I will try to reproduce your problem and see what I could find. Thanks.
    Chris

  • Adober Reader 9.0: annots.api Crashes

    I tried deploying Adobe Reader 9.0 to several campus computer labs I manage. I am using roaming user profiles, but I don't have AppData redirected - it stays on the local hard drive.
    I discovered that while Reader 9 works OK for Administrators, it crashes at startup for people with just regular "User"-level privileges. This problem goes away if I remove the annots.api plugin file. Has anybody else seen this issue? I've gone back to Reader 8.1.2 in the meantime.
    Thanks for your help.

    Hi luca,
    I have problem whit ALD
    I have version 7.1      
    after I made the upgrade to adobe Acrobat to 9 version  LiveCycle dump increasingly.
    message error:
    Runtime Errors         MESSAGE_TYPE_X
    Date and Time          15.05.2009 10:32:57
    What happened?
        The current application program detected a situation which really
        should not occur. Therefore, a termination with a short dump was
        triggered on purpose by the key word MESSAGE (type X).

  • Php4apache.dll uses plain apache 1.3 API,this module might crash under EAPI

    Hi,
    I am a total PHP beginner.
    I am trying to install and configure Oracle, PHP, and Apache on Windows XP. For this purpose I am trying to follow the installation guide that I found on http://www.oracle.com/technology/tech/opensource/php/apache/inst_php_apache_windows.html.
    I have first installed the Oracle 9i DB server on my E drive, which has by default created the following directory which contains the APACHE exe file
    E:\oracle\product\10.1.0\db_1\Apache\Apache\
    (it is Apache 1.3.22)
    I have downloaded php 4.3.8 from php.net and have been through the following steps given by the guide.
    I have copied the php.ini and edited it (uncomment the extension=php_oci8.dll line and specified the doc_root as E:\oracle\product\10.1.0\db_1\Apache\Apache\htdocs).
    I have copied php4ts.dll and php_oci8.dll to E:\oracle\product\10.1.0\db_1\Apache\Apache\
    i have edited the httpd.conf file by adding the 3 following lines:
    LoadModule php4_module e:/php-4.3.8/sapi/php4apache.dll
    AddModule mod_php4.c
    <IfModule mod_php4.c>AddType application/x-httpd-php .php
    </IfModule>
    When i start the Apache server i get:
    e:/php-4.3.8/sapi/php4apache.dll/php4apache.dll uses plain apache 1.3 API, this module might crash under EAPI!
    Apache seems to be working fine and to run php. The "hello world" test runs fine as well.
    Is this EAPI error a problem? (some forums seem to be implying that it is not a major error but a warning)
    If yes, I can I solve it?
    Your help would be very much appreciated.
    If needed, my email is [email protected] please feel free to use it.
    Frankie

    If you downloaded the binary version of PHP, then pretty much you can't do anything about it. It's just a warning. However, if you compiled and built it (using vc++ or something else), you'll have to add the EAPI flag to the compile flags (/DEAPI to CFLAGS in the vc++ project file/makefile) to remove this warning.

Maybe you are looking for

  • SetBackground() Is Not Working in Windows 7

    It looks like inheritance is broken in the component hierarchy for JFrame in Windows 7 JDK 1.6.0_23-b05. Run this code to reproduce the issue. public class Main public static void main(String[] args) JFrame frame = new JFrame(); frame.setTitle("Test

  • Can i change the storage device for a user on my macbook pro

    That basically says it all

  • Photo problem with tungsten e

    When I click on "Photos" there is like a flash of black screen on bottom half and goes back to menu. I can view photos on desk top but cannot pull them up on two different units of tungsten e.  I s there a way to check which programs are needed to ru

  • Data Object is performning slow

    I am using a data object which is tied to external view.The datbase view is holding data from multiple table.But from the bam side the entire configuration is functioning slow.Is there any other way by which i can handle this issue.or should i go wit

  • Form Page Template

    Hi, How can I form page`s template`s html columns width and amount of these columns. Thanks.