Lv71/labview: realloc(): invalid next size:

Linux Weenies;
I've had good luck running LV7.1 on Suse 10.1 and 10.3 (x86_64).  I have installed the box version from Novell of Suse 10.3 and now get the following errors:
*** glibc detected *** /usr/local/lv71/labview: realloc(): invalid next size: 0x223b1bf0 ***
(no debugging symbols found)
======= Backtrace: =========
/usr/local/lv71/lib/libc.so.6[0xf7bea4b6]
/usr/local/lv71/lib/libc.so.6[0xf7bed7ed]
/usr/local/lv71/lib/libc.so.6(realloc+0x10a)[0xf7bee1aa]
/usr/local/lv71/labview[0x822752d]
/usr/local/lv71/labview(DSSetHandleSize+0x69)[0x82262c9]
/usr/local/lv71/labview(FAppendName+0x60)[0x823c970]
/usr/local/lv71/labview(_Z9FListDir2PP6Path_tPP5CPStrPP10FMFileTypei+0x24f)[0x81d972f]
/usr/local/lv71/labview[0x86a5996]
/usr/local/lv71/labview[0x86a5a8e]
BTW:  I have tried placing earlier versions of glibc within /usr/ocal/lv71/lib/, it then can't find all the older x libraries etcetera.
   ...Dan

For what it's worth, running gdb on LabView shows an infinite loop at:
#0  0xffffe405 in __kernel_vsyscall ()
#1  0xf7c8f8d6 in __lxstat () from /lib/libc.so.6
#2  0x081d9797 in FListDir2 ()
#3  0x086a5996 in ?? ()
#4  0x086a5a8e in ?? ()
-- snip --
#4248 0x086a5a8e in ?? ()
#4249 0x086a5948 in ?? ()
#4250 0x086d6052 in OMIVIClassMgr::Init ()
#4251 0x086c0264 in ObjManagers::RegisterObjClassManager ()
#4252 0x086bfe78 in RegisterObjClassManager ()
#4253 0x086bff99 in InitObjMgr ()
#4254 0x08597a42 in InitApp ()
#4255 0x085b2146 in ?? ()
#4256 0x085b51d7 in ?? ()
#4257 0x08282835 in ?? ()
#4258 0x08282cca in WSendEvent ()
#4259 0x0822c9f4 in InitializeApp ()
#4260 0x08230a8e in ?? ()
#4261 0x08230b03 in main ()
Hopefully, someone familiar with the internals can help figure this out.
   ...Dan

Similar Messages

  • *** glibc detected *** free(): invalid next size (fast):

    Hello,
    I am working with LabVIEW 8.2 PDS on a RedHawk Enterprise Linux 4.0 system.
    I have a a VI consisting of a two strings: a control and an indicator string. Both are connected to a CIN object. The control is the input whereas the indicator is the output. Within the C-Code the string input is used as a name of paramter whereas the value of the parameter is saved in the indicator string. This works together with an API of third party supplier.
    The whole process of getting the value of the given parameter name is working quite well but from time to time the VI and also LabVIEW crash - after the CIN code had been executed - with follwoing error message:
    *** glibc detected *** free(): invalid next size (fast): 0xXXXXXXXX ***
    Aborted
    Of course it could be the third party API but I put a message at the end of the CIN code which is printed everytime also when LabVIEW crashed.
    Is there anybody who has expierenced the same behaviour?
    Thanks in advanced for any help or suggestions.
    Johannes

    Hello Johannes,
    I did a database search for the error message in our support database, but nothing was found.
    A quick google search showed some hits, but nothing was specific enough to point to a reason why LabVIEW would crash.
    I'm afraid I can't really help you with this.
    Regards,
    Johannes
    NI Germany

  • Rep - 1223  (Invalid Page Size)/Urgent

    Hi,
    I has developed a report in character mode.Then i save the report.In order to have a precise alignment i then changed the design in character units property to Yes.After some time,while running the report it gave an error Rep - 1223 (Invalid Page Size).
    On seeing the property inspector for Paper layout for the Main Section,i saw that the width and height property increased to some very high level.On trying to reducing the width and height size ,it gave a message that unable to reduce it since the layout is not large enough to accomodate layout items.
    Even when i do not save the report the next time,the error somehow persists.
    This kind of error comes very occasionally when try to design character mode reports using design in character units property set to Yes.
    Kindly help me out.
    Regards
    Deepak

    Hi Deepak
    I suggest you apply the latest patch set and check if issue still exist. There are no known issues like this currently.
    Thanks
    Rohit

  • Java.util.zip.ZipException: invalid entry size error --  help required

    Hi all
    I am sure this error would have been posted many number of times, but I would really appreciate if someone could help me with my problem. I am working on reading data from a .zip file, which in it has ~5GB data. All I am performing is a read operation through the piece of code specified below. This code worked well for .zip files handling till ~2.5GB
    FileInputStream fis = new FileInputStream(filename);
    BufferedInputStream bis = new BufferedInputStream(fis);
    ZipInputStream zis = new ZipInputStream(bis);
    StreamTokenizer tok = new StreamTokenizer( zis );
    ZipEntry entry;
    while((entry = zis.getNextEntry()) != null)
    \\read from the zip file through the streamTokenizer
    I just print what I read through the program, on the console.
    But the error I get is
    java.util.zip.ZipException: invalid entry size (expected 4294967295 but got 2117536490 bytes)
    at java.util.zip.ZipInputStream.readEnd(Unknown Source)
    at java.util.zip.ZipInputStream.read(Unknown Source)
    at java.util.zip.InflaterInputStream.read(Unknown Source)
    at java.io.StreamTokenizer.read(Unknown Source)
    at java.io.StreamTokenizer.nextToken(Unknown Source)
    at ZipFileStreams.getMessages(ZipFileStreams.java:677)
    at ZipFileStreams.main(ZipFileStreams.java:814)
    Could anybody give me hints as to what am I missing and where am i going wrong. Any help would be appreciated.
    Thanks

    Hi,
    I get the same exception while reading a ZIP file. The size if the ZIP file is just 82KB but I am reading it over FTP not sure if it makes any difference. I am using JDK 1.4.2_05. Here is the code I am trying to execute.
    public class TestFTP {
    public static void main( String[] argv ) throws Exception {
    String inboundPath = "/transfer/inbound/";
    FTPClient ftp = new FTPClient();
    ftp.connect("123");
    ftp.login( "123", "123" );
    ftp.changeWorkingDirectory(inboundPath);
    FTPFile[] zipFiles = ftp.listFiles("*.zip");
    TelnetClient telnetClient;
    for(int i=0;i<zipFiles.length;i++){   
    System.out.println(zipFiles.getName());
    ZipInputStream zis = new ZipInputStream(ftp.retrieveFileStream(zipFiles[i].getName()));
    for (ZipEntry entry = zis.getNextEntry(); entry != null; entry = zis.getNextEntry()){           
    System.out.println(entry.getName());
    The error message is
    java.util.zip.ZipException: invalid entry size (expected 10291 but got 10233 bytes)
         at java.util.zip.ZipInputStream.readEnd(ZipInputStream.java:367)
         at java.util.zip.ZipInputStream.read(ZipInputStream.java:141)
         at java.util.zip.ZipInputStream.closeEntry(ZipInputStream.java:91)
         at java.util.zip.ZipInputStream.getNextEntry(ZipInputStream.java:69)
         at test.TestFTP.main(TestFTP.java:41)
    Exception in thread "main"
    Please let me know if you were able to fix the problem.
    Thanks

  • Error(5): java.util.zip.ZipException: invalid entry size (expected 2875 but

    Hi all!
    I'm getting this error when I try to execute my application in JDeveloper: Error(5): java.util.zip.ZipException: invalid entry size (expected 2875 but got 2845 bytes)
    This started to happen after I had checkout my application to CVSNT.
    Any help?
    P.S. I'm using JDeveloper 10.1.3 with CVSNT 2.5

    My cvswrappers file (CVSNT):
    *.cab -kb
    *.class -kb
    *.doc -kb
    *.dll -kb
    *.ear -kb
    *.exe -kb
    *.exp -kb
    *.fla -kb
    *.gif -kb
    *.gz -kb
    *.jar -kb
    *.jpg -kb
    *.jpeg -kb
    *.lib -kb
    *.msi -kb
    *.mso -kb
    *.pdf -kb
    *.pfw -kb
    *.png -kb
    *.ppt -kb
    *.sit -kb
    *.swf -kb
    *.tar -kb
    *.tlb -kb
    *.vsd -kb
    *.xls -kb
    *.war -kb
    *.wmz -kb
    *.zip -kb Via Tortoise client I can add and commit zip (jar) files in binary format and everything is OK.
    If I do that via Jdev, anybody who checkout that module from cvs have zip exception, because JDev didnt sent in binary format. How to setup that?
    Thanx
    Message was edited by:
    vpetreski

  • Error(7): java.util.zip.ZipException: invalid entry size (expected 813 but

    Hi All,
    Error(7): java.util.zip.ZipException: invalid entry size (expected 813 but got 817 bytes)
    Today I opened my working project in Jdeveloper 10.1.3 version and as I compile the project, it gives me this error in all Jsf - Jsp pages.
    The line that it shows the above error in my pages is follows.
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    Any idea ? Till yesterday, I never got this error and all of sudden it started showing up.
    Your help appreciated.
    thanks,
    pp

    And just to add, nothing got checked out from repository (I mean CVS etc).
    I have this project and Jdev on my windows laptop. I just opened it and started getting this strange error. any idea ?

  • Invalid entry size using internal CVS

    Using internal CVS in jdev 10.1.3 i get "Invalid entry size" when a binary file is checked out from the repository. The cvs serve has the right flag set for zip file .
    Any ideas?

    Are you using a CVSNT server?
    We have an open bug about some incompatability between the internal client and CVSNT when using wrappers.

  • Error Items-90122: "Invalid Executable Size " the size of your app's executable file exceeds the maximum allowed size of 80 MB ,

    Hi,
    I am getting "Invalid Executable Size" error when i am trying to upload my app Ipa to iTunes , the same app was uploaded before without this issue, can any one help me to get out of this and to upload my app to iTunes ,
    Any help greatly appreciated....:)
    Thanks in advance..
    Thanks,
    HariKrishnan

    No , still i didn't get any reasonable solution, ,

  • Error Invalid response size: expected=1817, actual=1818

    Started seeing this errror since changing to 3.7.0.0.
    2011-05-23 18:22:42.447/63977.573 Oracle Coherence GE 3.7.0.0 <Error> (thread=DistributedCache:DistributedQuotesCacheService, member=3): Invalid response size: expected=1817, actual=1818
    2011-05-23 18:22:42.564/63977.690 Oracle Coherence GE 3.7.0.0 <Error> (thread=DistributedCache:DistributedQuotesCacheService, member=3): Invalid response size: expected=1818, actual=1819
    2011-05-23 18:22:42.846/63977.972 Oracle Coherence GE 3.7.0.0 <Error> (thread=DistributedCache:DistributedQuotesCacheService, member=3): Invalid response size: expected=1819, actual=1820
    2011-05-23 18:22:42.974/63978.100 Oracle Coherence GE 3.7.0.0 <Error> (thread=DistributedCache:DistributedQuotesCacheService, member=3): Invalid response size: expected=1820, actual=1821
    2011-05-23 18:22:43.366/63978.492 Oracle Coherence GE 3.7.0.0 <Error> (thread=DistributedCache:DistributedQuotesCacheService, member=3): Invalid response size: expected=1817, actual=1818
    2011-05-23 18:22:43.869/63978.995 Oracle Coherence GE 3.7.0.0 <Error> (thread=DistributedCache:DistributedQuotesCacheService, member=3): Invalid response size: expected=1818, actual=1819Thanks!
    Andrew

    Andrew,
    I think this error that you are getting is due to a bug in Coherence 3.7.0 which has been fixed in Patch 1, which has been released to My Oracle Support as patch 12530788.
    -Cris

  • Error:- Rep-1223 Invalid page size

    while am trying to run the reports which is having 67 columns , throwing error in Oracle reports 10g i.e Rep-1223 Invalid page size...plz help
    As am having 67 columns in a reports like below,
    ----(1)--,(47),---(2)-----,-----(3)---------,-(4)--,--(5)--,---(6)-------,---(7)------
    ,--(8)------,--(9)-----,------(10)---------,-(11)-,--(12)---,-(13)-,----(14)------,
    ----(15)---,---(16)--------,----(17)---------------,-------(18)--------,
    --------(18)---------,------(19)------,---(10)-----,-----(21)--------,---(22)------,
    ----(22)-----,----(23)--------,-(24)-,--(25)----------,----(26)--------,
    -------(27)--------,
    --(28)--,-----(29)--,-(30)-,--(31)-,
    --(32)--,---(33)----,-(34)-,--(35)--,
    --(36)--,---(37)----,-(38)-,--(39)--,
    --(40)--,---(41)----,-(42)-,--(43)--,
    --(44)--,---(45)----,-(46)-,--(47)--,
    -------(48)---------,--(49)-,-(50)-,----(51)------,----(52)-----,-----(53)------,
    -(54)-,--(55)---,--(56)-,----(57)-----,-(58)-,-(59)-,---(60)----,-----(61)------,
    -----(62)--------,---(63)----,-----(64)----,---(65)----,--(66)--,-----(67)----,
    thanks,
    prasadreddy.

    Hi,
    Did you set the Layout Model, header/Main/Trailer --> Width/Height and need to check format type, some case run in Character mode or Bitmap Mode.
    Regards,

  • Signed jar:  java.util.zip.ZipException: invalid entry size

    Hi, I have written an applet using Java 1.4. The applet contains multiple .class and .gif files. I jared the files to produce a single .jar file with the manifest. Then I signed that jar file with jarsigner that produced a self-signed jar with the certificate. When I run the applet in IE6 on my computer (Windows XP) it works fine - I got the certificate dialog box popping up and the applet loads normally. My computer does not have a Web server installed so everything happens locally.
    As soon as I move the html and signed jar files to the server and try to call it from my PC, the Java console displays the following message:
    java.util.zip.ZipException: invalid entry size (expected 1342177310 but got 7728 bytes)
         at java.util.zip.ZipInputStream.readEnd(ZipInputStream.java:363)
         at java.util.zip.ZipInputStream.read(ZipInputStream.java:142)
         at sun.plugin.cache.CachedJarLoader.decompress(CachedJarLoader.java:397)
         at sun.plugin.cache.CachedJarLoader.access$500
    CachedJarLoader.java:53)
         at sun.plugin.cache.CachedJarLoader$5.run(CachedJarLoader.java:335)
         at java.security.AccessController.doPrivileged(Native Method)
    etc... it's huge
    I have been through the forums, some people have similiar problem while trying to sign their jar, well, mine signs OK, it's just the fact that it doesn't run ... I've tried to kill the manifest and then re-sign the jar. I also tried to jar the files with -0 option - nothing worked. I do appreciate if someone could point me in the right direction.
    Thanks

    I have managed to work this one out: UNIX servers don't like jar files FTPed using ASCII. They should should be transferred in binary mode. I have installed an FTP client on my PC, switched to binary mode and re-transferred the jar file and it worked straight away.
    Thanks.

  • Java.util.zip.ZipException: invalid entry size

    Hi
    I get this error when I try to launch my jnlp file.
    Please help!
    java.util.zip.ZipException: invalid entry size (expected 3627 but got 0 bytes)
    at java.util.zip.ZipOutputStream.closeEntry(Unknown Source)
         at java.util.zip.ZipOutputStream.finish(Unknown Source)
         at java.util.zip.DeflaterOutputStream.close(Unknown Source)
         at java.util.zip.ZipOutputStream.close(Unknown Source)
         at com.sun.deploy.net.HttpDownloadHelper.download(Unknown Source)
         at com.sun.deploy.cache.Cache.downloadResourceToTempFile(Unknown Source)
         at com.sun.deploy.cache.Cache.downloadResourceToCache(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.actionDownload(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCachedFile(Unknown Source)
         at com.sun.javaws.LaunchDownload.downloadExtensionsHelper(Unknown Source)
         at com.sun.javaws.LaunchDownload.downloadExtensions(Unknown Source)
         at com.sun.javaws.Launcher.downloadResources(Unknown Source)
         at com.sun.javaws.Launcher.prepareLaunchFile(Unknown Source)
         at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source)
         at com.sun.javaws.Launcher.launch(Unknown Source)
         at com.sun.javaws.Main.launchApp(Unknown Source)
         at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
         at com.sun.javaws.Main$1.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    com.sun.deploy.net.FailedDownloadException: Unable to load resource: http://localhost:8080/swingjar.jar
         at com.sun.deploy.net.DownloadEngine.actionDownload(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCachedFile(Unknown Source)
         at com.sun.javaws.LaunchDownload.downloadExtensionsHelper(Unknown Source)
         at com.sun.javaws.LaunchDownload.downloadExtensions(Unknown Source)
         at com.sun.javaws.Launcher.downloadResources(Unknown Source)
         at com.sun.javaws.Launcher.prepareLaunchFile(Unknown Source)
         at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source)
         at com.sun.javaws.Launcher.launch(Unknown Source)
         at com.sun.javaws.Main.launchApp(Unknown Source)
         at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
         at com.sun.javaws.Main$1.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Edited by: auvergne on Mar 19, 2009 6:22 AM

    Are you using pack200 on signed jars? In the case you should normalize jars before signing, by packing and unpacking them.

  • Unknown error: ZipException: invalid entry size (expected 29630 but got 28789 bytes)

    Hi while choosing the workflow from the studio we are getting the following exception.Could
    any one of u assist us??
    Start server side stack trace:
    java.util.zip.ZipException: invalid entry size (expected 29630 but got 28789 bytes)
         at java.util.zip.ZipInputStream.readEnd(ZipInputStream.java:350)...
    java.util.zip.ZipException: invalid entry size (expected 29630 but got 28789 bytes)
    Start server side stack trace:
    java.util.zip.ZipException: invalid entry size (expected 29630 but got 28789 bytes)
         at java.util.zip.ZipInputStream.readEnd(ZipInputStream.java:350)
         at java.util.zip.ZipInputStream.read(ZipInputStream.java:139)
         at java.util.jar.JarInputStream.read(JarInputStream.java:157)
         at java.util.zip.ZipInputStream.closeEntry(ZipInputStream.java:88)
         at com.bea.wlpi.server.admin.JarReader.readData(Unknown Source)
         at com.bea.wlpi.server.admin.ImportManager.getImportables(Unknown Source)
         at com.bea.wlpi.server.admin.ImportManager.getImportables(Unknown Source)
         at com.bea.wlpi.server.admin.AdminBean.readPackage(Unknown Source)
         at com.bea.wlpi.server.admin.AdminBean_11ksof_EOImpl.readPackage(AdminBean_11ksof_EOImpl.java:100)
         at com.bea.wlpi.server.admin.AdminBean_11ksof_EOImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:362)
         at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:114)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:313)
         at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:821)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:308)
         at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:215)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:191)
    End server side stack trace
         <<no stack trace available>>

    Sudarsan,
    The problem was in the FTP from a Windows to a unix box. Use binary option when
    uploading file
    Regards,
    Anandhi
    "Sudarsan" <[email protected]> wrote:
    >
    Hi while choosing the workflow from the studio we are getting the following
    exception.Could
    any one of u assist us??
    Start server side stack trace:
    java.util.zip.ZipException: invalid entry size (expected 29630 but got
    28789 bytes)
         at java.util.zip.ZipInputStream.readEnd(ZipInputStream.java:350)...
    java.util.zip.ZipException: invalid entry size (expected 29630 but got
    28789 bytes)
    Start server side stack trace:
    java.util.zip.ZipException: invalid entry size (expected 29630 but got
    28789 bytes)
         at java.util.zip.ZipInputStream.readEnd(ZipInputStream.java:350)
         at java.util.zip.ZipInputStream.read(ZipInputStream.java:139)
         at java.util.jar.JarInputStream.read(JarInputStream.java:157)
         at java.util.zip.ZipInputStream.closeEntry(ZipInputStream.java:88)
         at com.bea.wlpi.server.admin.JarReader.readData(Unknown Source)
         at com.bea.wlpi.server.admin.ImportManager.getImportables(Unknown Source)
         at com.bea.wlpi.server.admin.ImportManager.getImportables(Unknown Source)
         at com.bea.wlpi.server.admin.AdminBean.readPackage(Unknown Source)
         at com.bea.wlpi.server.admin.AdminBean_11ksof_EOImpl.readPackage(AdminBean_11ksof_EOImpl.java:100)
         at com.bea.wlpi.server.admin.AdminBean_11ksof_EOImpl_WLSkel.invoke(Unknown
    Source)
         at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:362)
         at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:114)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:313)
         at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:821)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:308)
         at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:215)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:191)
    End server side stack trace
         <<no stack trace available>>

  • Error "Invalid Fetch Size" in ODi11g 11.1.1.6.0 version

    Hi Experts,
    I am doing Data integration from Excel (using mutltiple sheets data) to Oracle table and now I am facing an below issue
    Error:
    ODI-1217: Session EMP_ST1 (24202) fails with return code 8000.
    ODI-1226: Step EMP_ST1 fails after 1 attempt(s).
    ODI-1240: Flow EMP_ST1 fails while performing a Loading operation. This flow loads target table EMP_MULTI.
    ODI-1227: Task SrcSet0 (Loading) fails on the source MICROSOFT_EXCEL connection EMP_TEST.
    Caused By: java.sql.SQLException: Invalid Fetch Size
    Note: When i google it, I came to know that there is a patch Doc ID: 13528165 to resolve the same issue in ODI 11g (ver 11.1.1.5.0)
    Is there any patch to resolve same issue in ODI11g version 11.1.1.6.0 for windows 32-bit
    Thanks in advance
    Regards,
    PK
    Edited by: 917775 on May 21, 2012 11:37 PM

    Hi,
    You better get in touch with Oracle Support people and get it clarified .
    If there is no patch available for ODI 11.1.1.6 , but the bug is still there then they will create a forward porting request for the patch into ODI 11.1.1.6
    Thanks,
    Sutirtha

  • Invalid Executable Size?

    Recently i got this error when uploading my app:
    Dear developer,
    We have discovered one or more issues with your recent delivery for "Axiata Cup 2013". To process your delivery, the following issues must be corrected:
    Invalid Executable Size - The executable size of 81845168 bytes exceeds the maximum allowed size of 60 MB.
    Once these issues have been corrected, go to the Version Details page and click "Ready to Upload Binary." Continue through the submission process until the app status is "Waiting for Upload." You can then deliver the corrected binary.
    Did Apple set the limit for the maximum size?

    One of the solution,
    make sure you have not enabled the Debug build (it's possible to do so in Release build).
    And check it out,
    http://stackoverflow.com/questions/15309671/invalid-executable-size-from-itune-c onnect

Maybe you are looking for