IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

C Discussion :

L'executable ne lance pas


Sujet :

C

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre averti
    Profil pro
    Inscrit en
    Juin 2007
    Messages
    32
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2007
    Messages : 32
    Par défaut L'executable ne lance pas
    Bonjour !!

    J'ai un bon gros souci avec un petit programme C que j'ai écrit... Et je ne sais pas du tout d'où cela peut venir. Je suis débutant donc pas tapé si grosse boulette.

    Donc je compile mon fichier C avec DevC++ et des fois j'ai l'erreur suivante :
    ld returned 1 exit status
    Si je n'ai pas cette erreur, lorsque je lance le .exe, soit la fenêtre dos reste affiché sans rien... soit elle se ferme automatiquement ! Alors que certaines fois, pas de souci pour le fonctionnement... Quelqu'un aurait-il idée d'où cela peut venir ??

  2. #2
    Expert éminent
    Avatar de koala01
    Homme Profil pro
    aucun
    Inscrit en
    Octobre 2004
    Messages
    11 644
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 53
    Localisation : Belgique

    Informations professionnelles :
    Activité : aucun

    Informations forums :
    Inscription : Octobre 2004
    Messages : 11 644
    Par défaut
    Salut,

    Ld est l'outil responsable de ce que l'on appelle "l'édition de lien".

    Son rôle est de faire pointer tous les appels de fonctions vers ... l'endroit qu'elles utilisent réellement en mémoire (je simplifie, mais c'est pour te permettre de comprendre)

    Un statut "1" signifie qu'il est sorti "sur une erreur".

    Le message t'indique donc que ld n'a pas su faire correctement ton boulot.

    Le plus souvent, c'est parce qu'il n'a pas trouvé une bibliothèque qui est nécessaire pour permettre de faire correspondre l'appel d'une fonction avec sa place en mémoire

    Cela peut généralement se corriger simplement en précisant qu'il faut effectuer la liaison avec une bibliothèque ( un -lnomdebiblio)... Mais pour être plus précis, il nous faudra quelques infos supplémentaires

    Par exemple, essaye tu d'utiliser des bibliothèques externes (la liste de fichier "#include" nous permettra d'avancer )

    Tant que ld n'aura pas réussi à finir de manière correcte, tu ne pourra pas profiter de l'exécutable
    A méditer: La solution la plus simple est toujours la moins compliquée
    Ce qui se conçoit bien s'énonce clairement, et les mots pour le dire vous viennent aisément. Nicolas Boileau
    Compiler Gcc sous windows avec MinGW
    Coder efficacement en C++ : dans les bacs le 17 février 2014
    mon tout nouveau blog

  3. #3
    Membre averti
    Profil pro
    Inscrit en
    Juin 2007
    Messages
    32
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2007
    Messages : 32
    Par défaut
    En fait, ce message d'erreur n'est apparu que rarement... surement parce que j'ai relancé la compilation trop vite avec le lancement du .exe.
    En effet, sur mon PC perso, lorsque je lance le .exe, alors la fenêtre dos s'ouvre (dans laquelle des itérations doivent s'afficher) mais là rien.... fenêtre vide immobile... donc je clique sur la croix pour fermer et message d'erreur Windows... "envoyer le rapport d'erreur"
    Quand ce n'est pas ça, alors la fenêtre s'ouvre et se ferme direct...

    Ce qui m'étonne c'est que ça ne se lance pas....

    Je met un bout de mon code avec les "include" et aussi la manière donc je déclare mes tableaux et matrices... c'est ma première fois comme ça lol

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    #include <stdio.h>
    #include <stdlib.h>
    #include <math.h>
    #include <time.h>
     
    #define PI 3.14159265
     
    int ii = 512, jj = 16, tt = 1440, Niter = 200000;
    double T_huile = 100., T_init = 150;
    double L, l, R_L;
    double hx, hy, ht;
    double K_acier, K_huile, ro, D, ki, H_air, Cp, E, sigma_RMS, nu, Ep, alpha;
    double errmax, BornInfMin, x, BornInf, BornSup;
    float VitL, VitC, Pos, For, Ray;
    FILE *ValMail, *SaveTpeau, *FichErr, *FichCalc, *Contact, *TFinale, *Test, *Calc, *Calc2;
    double **T, **Tmax;
    double *h, *mu, *xs, *V_L, *V_C, *F, *R, *Rc, *Q, *Qmoy;
    double Debit = 1.4, Coeff = 72, CoeffCont = 0.2, Q0 = 215;
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    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
    void main()
    {
    int i;
    time_t t;
    FILE *Horaire, *FluMoy;
     
    time(&t); /* t contient maintenant l'heure et la date courante */
    Horaire = fopen("Temps.txt", "w");
    fprintf(Horaire, "Début = %s", ctime(&t));
     
    ValMail = fopen("Valeur Maillage.txt", "w");
    /*fprintf(ValMail, "Début = %s", ctime(&t));*/
     
    Contact = fopen("Caract Contact.txt", "w");
     
    SaveTpeau = fopen("Température de peau.txt", "w");
    fprintf(SaveTpeau, "%s\n", "Fichier de sauvegarde de la température de peau");
     
    FichErr = fopen("Erreur.txt", "w");
    fprintf(FichErr, "%s\n\n", "Valeur de l'erreur");
     
    TFinale = fopen("Température finale.txt", "w");
    fprintf(TFinale, "Matrice de température du linguet\n\n");
     
    /*Test = fopen("FichTest.txt", "w");*/
     
    /*Calc = fopen("FichCalc.txt", "w");*/
    /*Calc2 = fopen("FichCalc2.txt", "w");*/
     
    init();
    solve();
    writefile();
     
    FluMoy = fopen("Flux Moyen.txt", "w");
     
    for (i=0;i<=ii;i++)
        fprintf(FluMoy, "%i %f\n", i, Qmoy[i]);
     
    fclose(FluMoy); 
    /*fclose(Calc);*/
    /*fclose(Calc2);
    fclose(Test);*/
    fclose(TFinale);
    fclose(SaveTpeau);
    fclose(FichErr);
     
    time(&t);
    fprintf(Horaire, "\n Fin = %s", ctime(&t));
    fclose(Horaire);
     
    free(h);
    free(mu);
    free(xs);
    free(V_L);
    free(V_C);
    free(F);
    free(R);
    free(Rc);
    free(Q);
    free(T);
    free(Tmax);
    }
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
     
    void init()
    {
    int i, j, k;
    FILE *Vitesse_Linguet, *Vitesse_Came, *Position, *Force, *Rayon;
     
    h = malloc((tt+1) *sizeof(double));
    mu = malloc((tt+1) *sizeof(double));
    xs = malloc((tt+1) *sizeof(double));
    V_L = malloc((tt+1) *sizeof(double));
    V_C = malloc((tt+1) *sizeof(double));
    F = malloc((tt+1) *sizeof(double));
    R = malloc((tt+1) *sizeof(double));
    Rc = malloc((tt+1) *sizeof(double));
    Q = malloc((tt+1) *sizeof(double));
    Qmoy = calloc((ii+1), sizeof(double));
     
    T = malloc((ii+1) * sizeof(double*));
    for (i=0; i<=ii; i++)
        T[i] = malloc((jj+1) * sizeof(double));
     
    Tmax = malloc((ii+1) * sizeof(double*));
    for (i=0; i<=ii; i++)
        Tmax[i] = malloc((jj+1) * sizeof(double));
    Voilà si ça peut aider...

  4. #4
    Membre Expert Avatar de nicolas.sitbon
    Profil pro
    Inscrit en
    Août 2007
    Messages
    2 015
    Détails du profil
    Informations personnelles :
    Âge : 42
    Localisation : France

    Informations forums :
    Inscription : Août 2007
    Messages : 2 015
    Par défaut
    ça t'ennuierais de poster le code entier car c'est difficile de compiler ça pour voir les erreurs.Merci
    Cordialement.

  5. #5
    Expert éminent
    Avatar de Emmanuel Delahaye
    Profil pro
    Retraité
    Inscrit en
    Décembre 2003
    Messages
    14 512
    Détails du profil
    Informations personnelles :
    Âge : 68
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Retraité

    Informations forums :
    Inscription : Décembre 2003
    Messages : 14 512
    Par défaut
    Citation Envoyé par Surikat14
    Je met un bout de mon code avec les "include" et aussi la manière donc je déclare mes tableaux et matrices... c'est ma première fois comme ça<...>
    <...>
    Voilà si ça peut aider...
    Ton code est incomplet. Ceci est compilable et s'exécute sans erreurs :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    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
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
     
    #include <stdio.h>
    #include <stdlib.h>
    #include <math.h>
    #include <time.h>
     
    #define PI 3.14159265
     
    int ii = 512, jj = 16, tt = 1440, Niter = 200000;
    double T_huile = 100., T_init = 150;
    double L, l, R_L;
    double hx, hy, ht;
    double K_acier, K_huile, ro, D, ki, H_air, Cp, E, sigma_RMS, nu, Ep, alpha;
    double errmax, BornInfMin, x, BornInf, BornSup;
    float VitL, VitC, Pos, For, Ray;
    FILE *ValMail, *SaveTpeau, *FichErr, *FichCalc, *Contact, *TFinale, *Test,
       *Calc, *Calc2;
    double **T, **Tmax;
    double *h, *mu, *xs, *V_L, *V_C, *F, *R, *Rc, *Q, *Qmoy;
    double Debit = 1.4, Coeff = 72, CoeffCont = 0.2, Q0 = 215;
     
    void init (void)
    {
       int i;
       h = malloc ((tt + 1) * sizeof (double));
       mu = malloc ((tt + 1) * sizeof (double));
       xs = malloc ((tt + 1) * sizeof (double));
       V_L = malloc ((tt + 1) * sizeof (double));
       V_C = malloc ((tt + 1) * sizeof (double));
       F = malloc ((tt + 1) * sizeof (double));
       R = malloc ((tt + 1) * sizeof (double));
       Rc = malloc ((tt + 1) * sizeof (double));
       Q = malloc ((tt + 1) * sizeof (double));
       Qmoy = calloc ((ii + 1), sizeof (double));
       T = malloc ((ii + 1) * sizeof (double *));
       for (i = 0; i <= ii; i++)
          T[i] = malloc ((jj + 1) * sizeof (double));
       Tmax = malloc ((ii + 1) * sizeof (double *));
       for (i = 0; i <= ii; i++)
          Tmax[i] = malloc ((jj + 1) * sizeof (double));
    }
     
    void solve (void)
    {
    }
     
    void writefile (void)
    {
    }
     
    int main (void)
    {
       int i;
       time_t t;
       FILE *Horaire, *FluMoy;
       time (&t);                   /* t contient maintenant l'heure et la date courante */
       Horaire = fopen ("Temps.txt", "w");
       fprintf (Horaire, "Début = %s", ctime (&t));
       ValMail = fopen ("Valeur Maillage.txt", "w"); /*fprintf(ValMail, "Début = %s", ctime(&t)); */
       Contact = fopen ("Caract Contact.txt", "w");
       SaveTpeau = fopen ("Température de peau.txt", "w");
       fprintf (SaveTpeau, "%s\n",
                "Fichier de sauvegarde de la température de peau");
       FichErr = fopen ("Erreur.txt", "w");
       fprintf (FichErr, "%s\n\n", "Valeur de l'erreur");
       TFinale = fopen ("Température finale.txt", "w");
       fprintf (TFinale, "Matrice de température du linguet\n\n"); /*Test = fopen("FichTest.txt", "w"); *//*Calc = fopen("FichCalc.txt", "w"); *//*Calc2 = fopen("FichCalc2.txt", "w"); */
       init ();
       solve ();
       writefile ();
       FluMoy = fopen ("Flux Moyen.txt", "w");
       for (i = 0; i <= ii; i++)
          fprintf (FluMoy, "%i %f\n", i, Qmoy[i]);
       fclose (FluMoy);             /*fclose(Calc); *//*fclose(Calc2); fclose(Test); */
       fclose (TFinale);
       fclose (SaveTpeau);
       fclose (FichErr);
       time (&t);
       fprintf (Horaire, "\n Fin = %s", ctime (&t));
       fclose (Horaire);
       free (h);
       free (mu);
       free (xs);
       free (V_L);
       free (V_C);
       free (F);
       free (R);
       free (Rc);
       free (Q);
       free (T);
       free (Tmax);
     
       return 0;
    }
    Par contre C != FORTAN. Il va falloir apprendre à écrire du C correct et commencer par apprendre à utiliser les structure et à supprimmer ces horribles globales.

    Enfin, le détecteur de mensonges révèle que la géstion de la mémoire est calamiteuse :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    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
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
     
    <...>
    SYSALLOC Bloc 004BDB38 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BDBC8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BDC58 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BDCE8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BDD78 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BDE08 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BDE98 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BDF28 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BDFB8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BE048 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BE0D8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BE168 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BE1F8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BE288 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BE318 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BE3A8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BE438 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BE4C8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BE558 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BE5E8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BE678 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BE708 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BE798 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BE828 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BE8B8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BE948 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BE9D8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BEA68 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BEAF8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BEB88 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BEC18 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BECA8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BED38 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BEDC8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BEE58 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BEEE8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BEF78 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BF008 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BF098 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BF128 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BF1B8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BF248 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BF2D8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BF368 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BF3F8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BF488 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BF518 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BF5A8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BF638 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BF6C8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BF758 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BF7E8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BF878 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BF908 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BF998 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BFA28 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BFAB8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BFB48 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BFBD8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BFC68 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BFCF8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BFD88 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BFE18 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BFEA8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BFF38 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004BFFC8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0058 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C00E8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0178 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0208 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0298 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0328 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C03B8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0448 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C04D8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0568 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C05F8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0688 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0718 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C07A8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0838 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C08C8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0958 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C09E8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0A78 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0B08 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0B98 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0C28 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0CB8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0D48 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0DD8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0E68 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0EF8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C0F88 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1018 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C10A8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1138 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C11C8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1258 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C12E8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1378 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1408 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1498 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1528 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C15B8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1648 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C16D8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1768 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C17F8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1888 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1918 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C19A8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1A38 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1AC8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1B58 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1BE8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1C78 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1D08 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1D98 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1E28 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1EB8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1F48 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C1FD8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2068 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C20F8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2188 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2218 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C22A8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2338 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C23C8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2458 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C24E8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2578 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2608 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2698 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2728 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C27B8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2848 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C28D8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2968 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C29F8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2A88 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2B18 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2BA8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2C38 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2CC8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2D58 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2DE8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2E78 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2F08 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C2F98 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3028 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C30B8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3148 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C31D8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3268 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C32F8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3388 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3418 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C34A8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3538 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C35C8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3658 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C36E8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3778 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3808 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3898 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3928 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C39B8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3A48 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3AD8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3B68 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3BF8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3C88 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3D18 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3DA8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3E38 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3EC8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3F58 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C3FE8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4078 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4108 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4198 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4228 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C42B8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4348 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C43D8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4468 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C44F8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4588 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4618 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C46A8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4738 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C47C8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4858 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C48E8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4978 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4A08 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4A98 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4B28 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4BB8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4C48 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4CD8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4D68 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4DF8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4E88 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4F18 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C4FA8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5038 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C50C8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5158 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C51E8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5278 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5308 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5398 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5428 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C54B8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5548 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C55D8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5668 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C56F8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5788 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5818 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C58A8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5938 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C59C8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5A58 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5AE8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5B78 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5C08 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5C98 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5D28 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5DB8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5E48 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5ED8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5F68 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C5FF8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6088 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6118 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C61A8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6238 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C62C8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6358 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C63E8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6478 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6508 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6598 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6628 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C66B8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6748 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C67D8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6868 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C68F8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6988 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6A18 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6AA8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6B38 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6BC8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6C58 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6CE8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6D78 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6E08 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6E98 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6F28 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C6FB8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7048 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C70D8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7168 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C71F8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7288 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7318 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C73A8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7438 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C74C8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7558 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C75E8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7678 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7708 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7798 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7828 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C78B8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7948 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C79D8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7A68 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7AF8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7B88 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7C18 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7CA8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7D38 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7DC8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7E58 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7EE8 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C7F78 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C8008 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Bloc 004C8098 (136 bytes) malloc'ed at line 39 of 'main.c' not freed
    SYSALLOC Released Memory
    FRMWRK.Termine
     
    Press ENTER to continue.

Discussions similaires

  1. Executable ne se lance pas sous xwindow
    Par DjPoke dans le forum Applications et environnements graphiques
    Réponses: 4
    Dernier message: 15/11/2013, 14h20
  2. [Compiler] Executable ne se lance pas sur un autre ordinateur
    Par cedji dans le forum MATLAB
    Réponses: 9
    Dernier message: 13/09/2013, 12h11
  3. [WD10] Executable Ne se lance pas
    Par chaabanimehdi dans le forum WinDev
    Réponses: 2
    Dernier message: 17/02/2009, 17h49
  4. VC++ 6.0: Executable ne se lance pas
    Par beb30 dans le forum MFC
    Réponses: 14
    Dernier message: 11/08/2006, 14h45
  5. Envoi d'un mail en VBA: outlook ne se lance pas
    Par Hannibal dans le forum VBA Access
    Réponses: 4
    Dernier message: 01/06/2003, 15h24

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo