Illustrator 'CFRelease() called with NULL' Crash

18.1.1 Illustrator crashes everytime I need to move an object. Yes, moving to any object causes my Illustrator to crash. I already tried to reinstall the app through the creative application of cloud, but it doesn't seem to help. No matter what ideas on what do I do?

I'm on a MAC with os x 10.10.2

The crash log is the following: illustrator - crash.txt

kauelima,

I believe that the problem may be caused by the extension Chrome Pushbullet, see this post by Matt #3 with solution.

https://forums.Adobe.com/message/6984777#6984777

or by the Adobe color extension, see this post #2 of byhexxstatic with the solution,

https://forums.Adobe.com/message/7095368#7095368

or by the cache on the computer, see post #5 in this thread of bibliophile with the solution,

https://forums.Adobe.com/thread/1696375

Tags: Illustrator

Similar Questions

  • ApplicationMenuItem called with null in JDE 4.6 when you enter the phone number

    When I install a custom phone app, ApplicationMenuItem and

    try to enter a number on the keypad of the native Dialer, and then click the custom menu,

    my custom ApplicationMenuItem is called with a null context object.

    This same code + test case works well under the 4.5 JDE / 8300 emulator

    and device 8320, but fails under JDE 4.6 with the BB 9000 emulator

    and device

    To reproduce the bug:

    * Build/launch of the attached test application

    * Send with previous key

    * Go to the native Dialer

    * Enter "123" on the keyboard of the phone

    * Click on the trackball

    * Choose Bug49 the context menu

    * It will appear a dialog box indicating "context has the null value - is this a bug?

    NOTE that if, rather than enter a number on the keypad of the phone with step 4.

    a call log is selected, then it works and a non-null context object is passed.

    Can I make it work?  If this is a known bug, are

    It no work around?

    import net.rim.blackberry.api.menuitem.ApplicationMenuItem;import net.rim.blackberry.api.menuitem.ApplicationMenuItemRepository;import net.rim.device.api.ui.UiApplication;import net.rim.device.api.ui.component.Dialog;import net.rim.device.api.ui.component.LabelField;import net.rim.device.api.ui.component.RichTextField;import net.rim.device.api.ui.container.MainScreen;
    
    public class Bug49 extends UiApplication { public Bug49()    {     super();      Bug49Screen screen = new Bug49Screen();       pushScreen(screen);       ApplicationMenuItemRepository amir = ApplicationMenuItemRepository.getInstance();     Bug49NativeMenu bug49NativeMenu = new Bug49NativeMenu(0);     amir.addMenuItem(ApplicationMenuItemRepository.MENUITEM_PHONE, bug49NativeMenu ); }
    
      public static void main(String[] args) {      Bug49 b49 = new Bug49();      b49.enterEventDispatcher();   }
    
       static class Bug49Screen extends MainScreen {     public Bug49Screen() {            super();          setTitle(new LabelField("Hello"));            add(new RichTextField("Hello"));      } }
    
      static class Bug49NativeMenu extends ApplicationMenuItem  {     public Bug49NativeMenu(int order) {           super(order);     }     public Object run(Object context) {           if (context == null) {                Dialog.alert("context is null -- is this a bug?");            }         else {                Dialog.alert("context not null");         }         return null;      }     public String toString() {            return "Bug 49";      } }}
    

    It is a problem in the version of BlackBerry device software 4.6.0.  It has been fixed in version 4.7.0.

  • How to stop a program called with exec.vi system

    Hey Gang,

    I need to run a third-party application of in LabVIEW.  It works fine when it is called with the exec.vi system, as long as the user has entered the correct data.  However in some (very difficult to determine) conditions, the application crashes.

    I want to be able to force by program the application to complete and return to LV I assumed that there is a way to do it using the Windows API, but I don't know how to do this, and I would need a way to get the handle of the offending application Windows.

    Short re - implement the app in BT, I'm out of ideas.  I'll appreciate any help.

    Thank you

    Roger

    If you could post a picture of the offending code, it would be great. but two things come to mind, if you expect the exploit code (for example go to a wait for a period, then kill a task) wire: completion to false.

    then is another call to command prompt, look in taskkill /f

    You can kill a process

    It may be useful

  • Page setting with kSetPageCmdBoss crash InDesign when two docs open...

    Hello

    I have a strange problem here - I have a function to make a page in the page document, I use the kSetPageCmdBoss here. I think the code is from a sample, or on the forum and I use it for a long time. I call this function of my plugin and it works very well if only one document is open.

    Now, I found a problem when multiple documents are open. I am using our plugin as usual, I use the function to activate the pages and when I close my InDesign document crashed. I searched already a day to find that the problem is in this function and another day to understand why this happens. But at the moment I have no idea...

    The source code of my function is less to-when I don't call this function, it works with more than one document. When I call, InDesign has crashed.

    Anyone see the problem I do not see?

    Or y at - it another way to make a page in the page document active?

    Thank you

    Klaus

    // ----------------------------------------------------------------------------------------------------------
    // active an page in the active document
    UIDRef activatePage( IDocument* pDocument , int32 page ) {
         UIDRef UIDRefPage;
         if( pDocument != nil ) {
              IDataBase* db = ::GetDataBase( pDocument );
              if( db != nil ) {
                   InterfacePtr pageList(pDocument, IID_IPAGELIST);
                   if( pageList != nil ) {
                        //Get UID of Pagenumber 
                        UID UIDPage=pageList->GetNthPageUID( page ); 
                        if( UIDPage != 0 ) {
                             //Get UIDRef of Pagenumber 
                             UIDRef newRef(db, UIDPage); 
                             UIDRefPage = newRef;
                             if( UIDRefPage != 0 ) {
                                  //Get Pages Layer 
                                  InterfacePtr pageHierarchy(UIDRefPage,UseDefaultIID());
                                  if( pageHierarchy != nil ) {
    
                                       InterfacePtr spread(db,pageHierarchy->GetSpreadUID(),UseDefaultIID());
    
                                       // create the command 
                                       InterfacePtr setPageCmd(CmdUtils::CreateCommand(kSetPageCmdBoss)); 
    
                                       // get UIDRef of the document 
                                       UIDRef documentUIDRef = ::GetUIDRef((IPMUnknown*) pDocument); 
                                       setPageCmd->SetItemList(UIDList(spread)); 
    
                                       // create layoutcmddata and get parameters 
                                       InterfacePtr layoutCmdData(setPageCmd, UseDefaultIID()); 
                                       InterfacePtr layoutControlData(Utils()->QueryFrontLayoutData(), UseDefaultIID()); 
                                       layoutCmdData->Set(documentUIDRef, layoutControlData); 
    
                                       // create the uidData 
                                       InterfacePtr uidData(setPageCmd, UseDefaultIID()); 
                                       uidData->Set(UIDRefPage); 
    
                                       // process command 
                                       CmdUtils::ProcessCommand(setPageCmd);
                                  } // pageHierarchy != nil
                             } // UIDRefPage != 0
                        } // UIDPage != 0
                   } // pageList != nil
              } // db != nil
         } // pDocument != nil
         return UIDRefPage;
    }

    Hi Klaus,

    you call QueryFrontLayoutData(), but the given document may be another. It is best to call QueryLayoutData() with the presentation before most of the document, as you can get with IDocumentUIUtils.

    Markus

  • I was told that CC versions of Photoshop, InDesign and Illustrator are available with support right to left languages flawlessly.  Please order ME CC working with languages of the West and the Middle East.  My problem is no one that I spoke

    I was told that CC versions of Photoshop, InDesign and Illustrator are available with support right to left languages flawlessly.  Please order ME CC working with languages of the West and the Middle East.  My problem, it sucks, I talked to Adobe can tell me how to order the ME version.  I went around and for a week with them and have gotten nowhere.  I can't believe I'm the first person to ask for this version of CC and hope someone on the forum can point me in the right direction.  One last question - does anyone know how to reach support and talk to a real person?  Thank you.

    Hello

    You will need to contact support by calling/chat for this request.

    Contact the customer service

    * Be sure to stay connected with your Adobe ID before accessing the link above *.

    Kind regards

    Sheena

  • Need help, go back to Illustrator CC 2014. 2015 crashes on me.

    I've updated Illustrator from 2014 to 2015 the other day and now my system crashes completely once every 20 minutes or more when using from 2015.  Unfortunately, the update removed 2014 version and the Cloud Creative updater does not list version 2014 as a download option. I can't use 2015 with it crashing like that. I need to go back to 2014 wrong!


    Screenshot 2015-08-09 14.03.50.png

    Hi Jeremy,.

    Please refer to: download and install Adobe Creative Cloud applications

    Kind regards

    Akshay

  • Portege M400: Is it possible to receive and make calls with the SIM card

    Is it possible to receive and make calls with the card SIM module in the Portege M400?

    I know that you can send and receive sms messeges, which, according to me, the software is not all good because you can't hold much, and you can't send to ems or mms.

    But there may be other software here?

    Hello

    What software do you mean exactly?

    As far as I know that the MobiLink was preinstalled on some units Portege M400.
    This software supports these features:
    Send and receive SMS, composition and read TEXT messages in several languages, compose and send to multiple recipients, the mobile contacts address book support, Rich edit for the launch of URL and Email using embedded addresses.

    As you can see that you can not use this software to make calls!
    And unfortunately other software does not know me :(

    With regard to the MobiLink Communications Software Suite;
    The details can be verified here:
    http://www.novatelwireless.com/products/solutions/MobiLink.html

    Greetings

  • My contacts don't see who I am in a call with?

    Hello

    I'm new to Skype, but I have a question about my calls.

    members of my contacts don't see who I am in a video call with? can they still "call me"? or I will be offline since I am already in a call?

    Thanks for any help.

    If you are in a call, while others see this.
    When you are already in a call and second call comes then you will have the opportunity to put one on hold or join the second call to the current call.

    You can set your status to "do not disturb", if you wish, and then the calls will be rejected automatically or sent to your voicemail if you have.

    You will not be shown offline if you are in a call, your status will remain the same.

    André

    If the answer was helpful, please mark with congratulations , and if the problem is resolved you can mark it with solution. This will help other users found this answer more easily. Thanks in advance!

  • don't use not webcam. can I use video calls with the status of "invisible"?

    If I use no webcam, can I make a video call with Invisible"like status?

    In Invisible mode, you can do exactly the same thing as in online mode.

    Without a webcam, you can not start video calls, but you will be able to receive another person's video.

  • Sims House Party, the installation program starts, then immediately closes, gives me the error "0 x 80040707 - call function DLL crashed: SORTS." PathGetSpecialFolder.

    original title: error number: 0 x 80040707
    When I try to install the Sims House Party, the installer launches and then immediately closes, gives me the error "0 x 80040707 - call function DLL crashed: SORTS." PathGetSpecialFolder.

    According to the compatility of Windows 7, the House Party is compatible under 64-bit and 32-bit Windows 7. I tried to install it on another computer running Windows 7 32 bit and the error does not occur.

    I am running Windows 7 Professional 64 bit.

    Looks like that method 1 solved my problem.  Normally, I would get this message several times a day.  For more than 3 hours I applied the method 1, and the error has not appeared again.  Thank you very much.

  • reject call with sms does not

    Hello

    Since I upgraded my 6603 lollipop I can't reject calls with SMS messages more.

    Because when I got a call (and the phone is locked) drag up the button to select the message of rejection on the bottom of the screen is layered with black bar soft key showing the home and back buttons.

    Is this a bug or am I missing a setting?

    Thanks in advance!

    Hello

    I've seen this before. You have installed the application Smart Key? If so, I suggest you uninstall this application if you want the ability to reject calls with a text message.

  • my Skype closes and I click on a video call with an error: program of the window is closed due to technical problem

    original title: my Skype close as I click on a video call with error window close program because the problom technique

    I was using Skype program for a long time, but the last two days it stop working when I make a video call, it closes immediately give reason which, due to certain techniques problom window close the program

    Make sure your Windows is fully updated and the latest service pack installed.

    Update of Skype or to download the latest version of their Web site.

    Please update your webcam software and the graphics card driver.

    Check Windows problem and Solution Center and see if there is a new solution it.

  • Reject incoming calls with SMS stop after update MM

    Reject incoming calls with SMS stop after update MM, now I can't take the lower panel and SMS, please help from Sony.

    Hi all

    Today I turned my double Z5 wide and I removed the SIM card of the mobile.

    I switched on without a SIM card, and I turned off again.

    I inserted the SIM card, and I lit.

    Now when I got call answer option is appear.

    It is ok.

  • Phone call and sms crashes after update to 6.0

    After installing 6 Android. Phone call and sms crashes

    Hi Christopher,
    After installing Android 6.0 upgrade cannot dial a number and can not write and send sms.
    Yesterday, I reset my phone to factory default and now works well.
    Thanks for the reply

  • hostsvc: called with the DISP invalid/missing entry

    If I try to follow links in one of the e-mails I get from Big Brother, I get the following message is displayed:

    hostsvc: called with the DISP invalid/missing entry

    This is the full URL.

    Please see: http://servername/bb/cgi-bin/hostsvc.exe?HOSTSVC=server1, companyname.svcs, & DISP

    I noticed that the text of the e-mail message contains an = sign, which is not part of the hyperlink. If I understand the = the link works then. For example:

    See example: http://servername/bb/cgi-bin/hostsvc.exe?HOSTSVC=server1, companyname.svcs, & DISP=

    I did the search. Here's what's happening with the Outlook 2007 SP2 calendering of BB notifications, so that the & DSP = part of the bond is converted to & DSP without the = in the link to the notification.

    This deformation occurs only when a SMS is received, which has a text version of a link HTML in there and it is received by Exchange 2007 with Outlo0k 2007.

    When outlook 2007 (sp2 in our case) will receive an email with a link inside HTML text, it makes a "best body format.

    Conversion. You always have an email in text format, but there is a HTML link truncated in the recipe, which has not only = inside.

    This only happens when the text is converted to HTML.

    I even tried hard put forced HTML or RTF format on the mailbox... no go... He did force these formats. but the text to html conversion happens broken Similarly, regardless of the size of the mailbox.

    If messages would be in HTMl, it would work perfectly. Maybe one day you could make this an option... the message in text or html format. (development

    request)

    If I paste the link in an html format email, it works very well. Also, if I find the message and click the link in the notification with Outlook Web Access, it works very well.

    Only from Outlook 2007, Microsoft changed the default HTML rendering, used by Word 2007 engine. That's the problem. It is this rendering engine that has the problem, a lot of people are very annoyed and Microsoft does not care to fix it.

    So far we have the option for sending to HTML, or Microsoft fixes some of this.

    the only option we have is to get the wrong message from: hostsvc: called with the DISP invalid/missing entry, then to go into the browser and add in the '=' manually, and it will then visit the link in the notification.

    Any ideas or suggestions? Thank you

    Hi Milt

    Well, in hostsvc.exe, he could accept a missing DISP (or deformed) and defaults to «» This should be the solution. I don't think that it could break anything if it were this way.

Maybe you are looking for