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

Outils Discussion :

Runtime Error - This application has required the Runtime to terminate it in a unusual way [Qt Designer]


Sujet :

Outils

  1. #1
    Futur Membre du Club
    Profil pro
    Inscrit en
    Novembre 2010
    Messages
    8
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Novembre 2010
    Messages : 8
    Points : 5
    Points
    5
    Par défaut Runtime Error - This application has required the Runtime to terminate it in a unusual way
    Bonjour à tous,
    J'ai développé une application en QtCreator/QtDesigner...
    Le debug et le release se font sans souci : tout fonctionne.
    Par contre, quand je lance le .exe (isolé avec dans le même dossier les dll demandées), le programme bugge et Windows me dit
    "Microsoft C++ Runtime Library
    Runtime Error !
    Program: (mon programme)
    This application has required the Runtime to terminate it in a unusual way..."
    J'ai cherché pendant deux jours sur le net mais je ne trouve pas d'explication.
    J'utilise QtCreator 2.6.2 (based on the 5.0.1).
    Auriez-vous une piste à m'indiquer, s'il vous plaît ?
    Merci d'avance.

  2. #2
    Responsable 2D/3D/Jeux


    Avatar de LittleWhite
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Mai 2008
    Messages
    26 826
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Ingénieur développement logiciels

    Informations forums :
    Inscription : Mai 2008
    Messages : 26 826
    Points : 218 287
    Points
    218 287
    Billets dans le blog
    117
    Par défaut
    Bonjour,

    Est-ce sur la même machine que celle de développement ?
    Je pense qu'il y a un bogue au niveau de l'utilisation de la STL, vous devriez vérifier avec valgrind (ou un outil similaire pour Windows).
    Vous souhaitez participer à la rubrique 2D/3D/Jeux ? Contactez-moi

    Ma page sur DVP
    Mon Portfolio

    Qui connaît l'erreur, connaît la solution.

  3. #3
    Futur Membre du Club
    Profil pro
    Inscrit en
    Novembre 2010
    Messages
    8
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Novembre 2010
    Messages : 8
    Points : 5
    Points
    5
    Par défaut STL
    Merci pour cette piste de recherche !
    Je n'ai pas Linux aussi j'ai utilisé Dr Memory qui a sorti un loooong rapport d'erreur. Trop long pour que je le colle ici...
    C'est d'autant plus bizarre que j'ai le même problème après avoir testé mon soft sur d'autres pc avec d'autres OS.

  4. #4
    Futur Membre du Club
    Profil pro
    Inscrit en
    Novembre 2010
    Messages
    8
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Novembre 2010
    Messages : 8
    Points : 5
    Points
    5
    Par défaut Suite...
    Bonjour à tous, Sans avoir pu trouver de solution, voici le message d'erreur que donne Dr Memory :
    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
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    Recorded 75 suppression(s) from default C:\Program Files\Dr. Memory\bin\suppress-default.txt
     
    WARNING: application is missing line number information.
     
    Error #1: UNINITIALIZED READ: reading 0x754ab42c-0x754ab42e 2 byte(s)
    # 0 KERNELBASE.dll!OpenRegKey                                                 +0x262    (0x75414f8b <KERNELBASE.dll+0x14f8b>)
    # 1 KERNELBASE.dll!GetUserDefaultLCID                                         +0x9d     (0x7541357e <KERNELBASE.dll+0x1357e>)
    # 2 Qt5Core.dll!ZltRK13QElapsedTimerS1_                                       +0x9c8    (0x689060f9 <Qt5Core.dll+0x860f9>)
    # 3 Qt5Core.dll!ZN12QLibraryInfo12isDebugBuildEv                              +0x2af    (0x6888c790 <Qt5Core.dll+0xc790>)
    # 4 Qt5Core.dll!ZN14QFactoryLoaderC1EPKcRK7QStringN2Qt15CaseSensitivityE      +0x162    (0x68a2c563 <Qt5Core.dll+0x1ac563>)
    # 5 Qt5Gui.dll!ZNK15QPlatformScreen10topLevelAtERK6QPoint                     +0x362    (0x61951603 <Qt5Gui.dll+0x11603>)
    # 6 Qt5Gui.dll!ZN27QPlatformIntegrationFactory6createERK7QStringRK11QStringListS2_+0x54     (0x61951715 <Qt5Gui.dll+0x11715>)
    # 7 Qt5Gui.dll!ZN22QGuiApplicationPrivate25createPlatformIntegrationEv        +0x2f6    (0x61959d07 <Qt5Gui.dll+0x19d07>)
    # 8 Qt5Gui.dll!ZN22QGuiApplicationPrivate21createEventDispatcherEv            +0x44     (0x6195a785 <Qt5Gui.dll+0x1a785>)
    # 9 Qt5Core.dll!ZN16QCoreApplication4initEv                                   +0x83     (0x68a360a4 <Qt5Core.dll+0x1b60a4>)
    #10 Qt5Core.dll!ZN16QCoreApplicationC2ER23QCoreApplicationPrivate             +0x73     (0x68a36154 <Qt5Core.dll+0x1b6154>)
    #11 GPC-Version2.exe!?                                                        +0x0      (0x004013fa <GPC-Version2.exe+0x13fa>)
    Note: @0:00:14.223 in thread 5740
    Note: instruction: data16 cmp    0x0c(%esi) %ax
     
    Error #2: UNINITIALIZED READ: reading 0x754ab42e-0x754ab430 2 byte(s)
    # 0 KERNELBASE.dll!GetNamedLocaleHashNode                                     +0x24     (0x75422b81 <KERNELBASE.dll+0x22b81>)
    # 1 KERNELBASE.dll!OpenRegKey                                                 +0x275    (0x75414f9f <KERNELBASE.dll+0x14f9f>)
    # 2 KERNELBASE.dll!GetUserDefaultLCID                                         +0x9d     (0x7541357e <KERNELBASE.dll+0x1357e>)
    # 3 Qt5Core.dll!ZltRK13QElapsedTimerS1_                                       +0x9c8    (0x689060f9 <Qt5Core.dll+0x860f9>)
    # 4 Qt5Core.dll!ZN12QLibraryInfo12isDebugBuildEv                              +0x2af    (0x6888c790 <Qt5Core.dll+0xc790>)
    # 5 Qt5Core.dll!ZN14QFactoryLoaderC1EPKcRK7QStringN2Qt15CaseSensitivityE      +0x162    (0x68a2c563 <Qt5Core.dll+0x1ac563>)
    # 6 Qt5Gui.dll!ZNK15QPlatformScreen10topLevelAtERK6QPoint                     +0x362    (0x61951603 <Qt5Gui.dll+0x11603>)
    # 7 Qt5Gui.dll!ZN27QPlatformIntegrationFactory6createERK7QStringRK11QStringListS2_+0x54     (0x61951715 <Qt5Gui.dll+0x11715>)
    # 8 Qt5Gui.dll!ZN22QGuiApplicationPrivate25createPlatformIntegrationEv        +0x2f6    (0x61959d07 <Qt5Gui.dll+0x19d07>)
    # 9 Qt5Gui.dll!ZN22QGuiApplicationPrivate21createEventDispatcherEv            +0x44     (0x6195a785 <Qt5Gui.dll+0x1a785>)
    #10 Qt5Core.dll!ZN16QCoreApplication4initEv                                   +0x83     (0x68a360a4 <Qt5Core.dll+0x1b60a4>)
    #11 Qt5Core.dll!ZN16QCoreApplicationC2ER23QCoreApplicationPrivate             +0x73     (0x68a36154 <Qt5Core.dll+0x1b6154>)
    Note: @0:00:14.225 in thread 5740
    Note: instruction: data16 cmp    (%ebx) $0x0000
     
    Error #3: UNINITIALIZED READ: reading 0x754ab430-0x754ab432 2 byte(s)
    # 0 KERNELBASE.dll!GetNamedLocaleHashNode                                     +0x51     (0x75422bae <KERNELBASE.dll+0x22bae>)
    # 1 KERNELBASE.dll!OpenRegKey                                                 +0x275    (0x75414f9f <KERNELBASE.dll+0x14f9f>)
    # 2 KERNELBASE.dll!GetUserDefaultLCID                                         +0x9d     (0x7541357e <KERNELBASE.dll+0x1357e>)
    # 3 Qt5Core.dll!ZltRK13QElapsedTimerS1_                                       +0x9c8    (0x689060f9 <Qt5Core.dll+0x860f9>)
    # 4 Qt5Core.dll!ZN12QLibraryInfo12isDebugBuildEv                              +0x2af    (0x6888c790 <Qt5Core.dll+0xc790>)
    # 5 Qt5Core.dll!ZN14QFactoryLoaderC1EPKcRK7QStringN2Qt15CaseSensitivityE      +0x162    (0x68a2c563 <Qt5Core.dll+0x1ac563>)
    # 6 Qt5Gui.dll!ZNK15QPlatformScreen10topLevelAtERK6QPoint                     +0x362    (0x61951603 <Qt5Gui.dll+0x11603>)
    # 7 Qt5Gui.dll!ZN27QPlatformIntegrationFactory6createERK7QStringRK11QStringListS2_+0x54     (0x61951715 <Qt5Gui.dll+0x11715>)
    # 8 Qt5Gui.dll!ZN22QGuiApplicationPrivate25createPlatformIntegrationEv        +0x2f6    (0x61959d07 <Qt5Gui.dll+0x19d07>)
    # 9 Qt5Gui.dll!ZN22QGuiApplicationPrivate21createEventDispatcherEv            +0x44     (0x6195a785 <Qt5Gui.dll+0x1a785>)
    #10 Qt5Core.dll!ZN16QCoreApplication4initEv                                   +0x83     (0x68a360a4 <Qt5Core.dll+0x1b60a4>)
    #11 Qt5Core.dll!ZN16QCoreApplicationC2ER23QCoreApplicationPrivate             +0x73     (0x68a36154 <Qt5Core.dll+0x1b6154>)
    Note: @0:00:14.227 in thread 5740
    Note: instruction: data16 cmp    (%eax) $0x0000
     
    Error #4: UNINITIALIZED READ: reading 0x754ab9f4-0x754ab9f8 4 byte(s)
    # 0 KERNELBASE.dll!GetUserDefaultLCID                                         +0x48     (0x75413528 <KERNELBASE.dll+0x13528>)
    # 1 Qt5Core.dll!ZltRK13QElapsedTimerS1_                                       +0xfab    (0x689066dc <Qt5Core.dll+0x866dc>)
    # 2 Qt5Core.dll!ZN12QLibraryInfo12isDebugBuildEv                              +0x2af    (0x6888c790 <Qt5Core.dll+0xc790>)
    # 3 Qt5Core.dll!ZN14QFactoryLoaderC1EPKcRK7QStringN2Qt15CaseSensitivityE      +0x162    (0x68a2c563 <Qt5Core.dll+0x1ac563>)
    # 4 Qt5Gui.dll!ZNK15QPlatformScreen10topLevelAtERK6QPoint                     +0x362    (0x61951603 <Qt5Gui.dll+0x11603>)
    # 5 Qt5Gui.dll!ZN27QPlatformIntegrationFactory6createERK7QStringRK11QStringListS2_+0x54     (0x61951715 <Qt5Gui.dll+0x11715>)
    # 6 Qt5Gui.dll!ZN22QGuiApplicationPrivate25createPlatformIntegrationEv        +0x2f6    (0x61959d07 <Qt5Gui.dll+0x19d07>)
    # 7 Qt5Gui.dll!ZN22QGuiApplicationPrivate21createEventDispatcherEv            +0x44     (0x6195a785 <Qt5Gui.dll+0x1a785>)
    # 8 Qt5Core.dll!ZN16QCoreApplication4initEv                                   +0x83     (0x68a360a4 <Qt5Core.dll+0x1b60a4>)
    # 9 Qt5Core.dll!ZN16QCoreApplicationC2ER23QCoreApplicationPrivate             +0x73     (0x68a36154 <Qt5Core.dll+0x1b6154>)
    #10 GPC-Version2.exe!?                                                        +0x0      (0x004013fa <GPC-Version2.exe+0x13fa>)
    #11 KERNEL32.dll!BaseThreadInitThunk                                          +0x11     (0x76861866 <KERNEL32.dll+0x1866>)
    Note: @0:00:14.280 in thread 5740
    Note: instruction: cmp    0x754ab9f4 %eax
     
    Error #5: UNINITIALIZED READ: reading register ax
    # 0 KERNELBASE.dll!GetUserInfo                                                +0x8f     (0x754220b6 <KERNELBASE.dll+0x220b6>)
    # 1 KERNELBASE.dll!DeleteFileA                                                +0xb5     (0x75423452 <KERNELBASE.dll+0x23452>)
    # 2 KERNELBASE.dll!GetLocaleInfoW                                             +0x70     (0x754134c8 <KERNELBASE.dll+0x134c8>)
    # 3 Qt5Core.dll!Z17qt_localeFromLCIDm                                         +0x1eb    (0x68906fcc <Qt5Core.dll+0x86fcc>)
    # 4 Qt5Core.dll!ZN12QLibraryInfo12isDebugBuildEv                              +0x2af    (0x6888c790 <Qt5Core.dll+0xc790>)
    # 5 Qt5Core.dll!ZN14QFactoryLoaderC1EPKcRK7QStringN2Qt15CaseSensitivityE      +0x162    (0x68a2c563 <Qt5Core.dll+0x1ac563>)
    # 6 Qt5Gui.dll!ZNK15QPlatformScreen10topLevelAtERK6QPoint                     +0x362    (0x61951603 <Qt5Gui.dll+0x11603>)
    # 7 Qt5Gui.dll!ZN27QPlatformIntegrationFactory6createERK7QStringRK11QStringListS2_+0x54     (0x61951715 <Qt5Gui.dll+0x11715>)
    # 8 Qt5Gui.dll!ZN22QGuiApplicationPrivate25createPlatformIntegrationEv        +0x2f6    (0x61959d07 <Qt5Gui.dll+0x19d07>)
    # 9 Qt5Gui.dll!ZN22QGuiApplicationPrivate21createEventDispatcherEv            +0x44     (0x6195a785 <Qt5Gui.dll+0x1a785>)
    #10 Qt5Core.dll!ZN16QCoreApplication4initEv                                   +0x83     (0x68a360a4 <Qt5Core.dll+0x1b60a4>)
    #11 Qt5Core.dll!ZN16QCoreApplicationC2ER23QCoreApplicationPrivate             +0x73     (0x68a36154 <Qt5Core.dll+0x1b6154>)
    Note: @0:00:14.523 in thread 5740
    Note: instruction: data16 cmp    %ax %cx
     
    Error #6: UNINITIALIZED READ: reading register cx
    # 0 KERNELBASE.dll!GetUserInfo                                                +0xeb     (0x75422112 <KERNELBASE.dll+0x22112>)
    # 1 KERNELBASE.dll!DeleteFileA                                                +0xb5     (0x75423452 <KERNELBASE.dll+0x23452>)
    # 2 KERNELBASE.dll!GetLocaleInfoW                                             +0x70     (0x754134c8 <KERNELBASE.dll+0x134c8>)
    # 3 Qt5Core.dll!Z17qt_localeFromLCIDm                                         +0x1eb    (0x68906fcc <Qt5Core.dll+0x86fcc>)
    # 4 Qt5Core.dll!ZN12QLibraryInfo12isDebugBuildEv                              +0x2af    (0x6888c790 <Qt5Core.dll+0xc790>)
    # 5 Qt5Core.dll!ZN14QFactoryLoaderC1EPKcRK7QStringN2Qt15CaseSensitivityE      +0x162    (0x68a2c563 <Qt5Core.dll+0x1ac563>)
    # 6 Qt5Gui.dll!ZNK15QPlatformScreen10topLevelAtERK6QPoint                     +0x362    (0x61951603 <Qt5Gui.dll+0x11603>)
    # 7 Qt5Gui.dll!ZN27QPlatformIntegrationFactory6createERK7QStringRK11QStringListS2_+0x54     (0x61951715 <Qt5Gui.dll+0x11715>)
    # 8 Qt5Gui.dll!ZN22QGuiApplicationPrivate25createPlatformIntegrationEv        +0x2f6    (0x61959d07 <Qt5Gui.dll+0x19d07>)
    # 9 Qt5Gui.dll!ZN22QGuiApplicationPrivate21createEventDispatcherEv            +0x44     (0x6195a785 <Qt5Gui.dll+0x1a785>)
    #10 Qt5Core.dll!ZN16QCoreApplication4initEv                                   +0x83     (0x68a360a4 <Qt5Core.dll+0x1b60a4>)
    #11 Qt5Core.dll!ZN16QCoreApplicationC2ER23QCoreApplicationPrivate             +0x73     (0x68a36154 <Qt5Core.dll+0x1b6154>)
    Note: @0:00:14.525 in thread 5740
    Note: instruction: data16 test   %cx %cx
     
    Error #7: UNINITIALIZED READ: reading register ax
    # 0 KERNELBASE.dll!GetUserInfo                                                +0x8f     (0x754220b6 <KERNELBASE.dll+0x220b6>)
    # 1 KERNELBASE.dll!DeleteFileA                                                +0x69     (0x75423406 <KERNELBASE.dll+0x23406>)
    # 2 KERNELBASE.dll!GetLocaleInfoW                                             +0x70     (0x754134c8 <KERNELBASE.dll+0x134c8>)
    # 3 Qt5Core.dll!Z17qt_localeFromLCIDm                                         +0x1eb    (0x68906fcc <Qt5Core.dll+0x86fcc>)
    # 4 Qt5Core.dll!ZN12QLibraryInfo12isDebugBuildEv                              +0x2af    (0x6888c790 <Qt5Core.dll+0xc790>)
    # 5 Qt5Core.dll!ZN14QFactoryLoaderC1EPKcRK7QStringN2Qt15CaseSensitivityE      +0x162    (0x68a2c563 <Qt5Core.dll+0x1ac563>)
    # 6 Qt5Gui.dll!ZNK15QPlatformScreen10topLevelAtERK6QPoint                     +0x362    (0x61951603 <Qt5Gui.dll+0x11603>)
    # 7 Qt5Gui.dll!ZN27QPlatformIntegrationFactory6createERK7QStringRK11QStringListS2_+0x54     (0x61951715 <Qt5Gui.dll+0x11715>)
    # 8 Qt5Gui.dll!ZN22QGuiApplicationPrivate25createPlatformIntegrationEv        +0x2f6    (0x61959d07 <Qt5Gui.dll+0x19d07>)
    # 9 Qt5Gui.dll!ZN22QGuiApplicationPrivate21createEventDispatcherEv            +0x44     (0x6195a785 <Qt5Gui.dll+0x1a785>)
    #10 Qt5Core.dll!ZN16QCoreApplication4initEv                                   +0x83     (0x68a360a4 <Qt5Core.dll+0x1b60a4>)
    #11 Qt5Core.dll!ZN16QCoreApplicationC2ER23QCoreApplicationPrivate             +0x73     (0x68a36154 <Qt5Core.dll+0x1b6154>)
    Note: @0:00:14.544 in thread 5740
    Note: instruction: data16 cmp    %ax %cx
     
    Error #8: UNINITIALIZED READ: reading register cx
    # 0 KERNELBASE.dll!GetUserInfo                                                +0xeb     (0x75422112 <KERNELBASE.dll+0x22112>)
    # 1 KERNELBASE.dll!DeleteFileA                                                +0x69     (0x75423406 <KERNELBASE.dll+0x23406>)
    # 2 KERNELBASE.dll!GetLocaleInfoW                                             +0x70     (0x754134c8 <KERNELBASE.dll+0x134c8>)
    # 3 Qt5Core.dll!Z17qt_localeFromLCIDm                                         +0x1eb    (0x68906fcc <Qt5Core.dll+0x86fcc>)
    # 4 Qt5Core.dll!ZN12QLibraryInfo12isDebugBuildEv                              +0x2af    (0x6888c790 <Qt5Core.dll+0xc790>)
    # 5 Qt5Core.dll!ZN14QFactoryLoaderC1EPKcRK7QStringN2Qt15CaseSensitivityE      +0x162    (0x68a2c563 <Qt5Core.dll+0x1ac563>)
    # 6 Qt5Gui.dll!ZNK15QPlatformScreen10topLevelAtERK6QPoint                     +0x362    (0x61951603 <Qt5Gui.dll+0x11603>)
    # 7 Qt5Gui.dll!ZN27QPlatformIntegrationFactory6createERK7QStringRK11QStringListS2_+0x54     (0x61951715 <Qt5Gui.dll+0x11715>)
    # 8 Qt5Gui.dll!ZN22QGuiApplicationPrivate25createPlatformIntegrationEv        +0x2f6    (0x61959d07 <Qt5Gui.dll+0x19d07>)
    # 9 Qt5Gui.dll!ZN22QGuiApplicationPrivate21createEventDispatcherEv            +0x44     (0x6195a785 <Qt5Gui.dll+0x1a785>)
    #10 Qt5Core.dll!ZN16QCoreApplication4initEv                                   +0x83     (0x68a360a4 <Qt5Core.dll+0x1b60a4>)
    #11 Qt5Core.dll!ZN16QCoreApplicationC2ER23QCoreApplicationPrivate             +0x73     (0x68a36154 <Qt5Core.dll+0x1b6154>)
    Note: @0:00:14.545 in thread 5740
    Note: instruction: data16 test   %cx %cx
     
    Error #9: UNINITIALIZED READ: reading register ax
    # 0 KERNELBASE.dll!GetUserInfo                                                +0x8f     (0x754220b6 <KERNELBASE.dll+0x220b6>)
    # 1 KERNELBASE.dll!CompareStringOrdinal                                       +0x452    (0x75418282 <KERNELBASE.dll+0x18282>)
    # 2 KERNELBASE.dll!GetLocaleInfoW                                             +0x70     (0x754134c8 <KERNELBASE.dll+0x134c8>)
    # 3 Qt5Core.dll!Z17qt_localeFromLCIDm                                         +0x1eb    (0x68906fcc <Qt5Core.dll+0x86fcc>)
    # 4 Qt5Core.dll!ZN12QLibraryInfo12isDebugBuildEv                              +0x2af    (0x6888c790 <Qt5Core.dll+0xc790>)
    # 5 Qt5Core.dll!ZN14QFactoryLoaderC1EPKcRK7QStringN2Qt15CaseSensitivityE      +0x162    (0x68a2c563 <Qt5Core.dll+0x1ac563>)
    # 6 Qt5Gui.dll!ZNK15QPlatformScreen10topLevelAtERK6QPoint                     +0x362    (0x61951603 <Qt5Gui.dll+0x11603>)
    # 7 Qt5Gui.dll!ZN27QPlatformIntegrationFactory6createERK7QStringRK11QStringListS2_+0x54     (0x61951715 <Qt5Gui.dll+0x11715>)
    # 8 Qt5Gui.dll!ZN22QGuiApplicationPrivate25createPlatformIntegrationEv        +0x2f6    (0x61959d07 <Qt5Gui.dll+0x19d07>)
    # 9 Qt5Gui.dll!ZN22QGuiApplicationPrivate21createEventDispatcherEv            +0x44     (0x6195a785 <Qt5Gui.dll+0x1a785>)
    #10 Qt5Core.dll!ZN16QCoreApplication4initEv                                   +0x83     (0x68a360a4 <Qt5Core.dll+0x1b60a4>)
    #11 Qt5Core.dll!ZN16QCoreApplicationC2ER23QCoreApplicationPrivate             +0x73     (0x68a36154 <Qt5Core.dll+0x1b6154>)
    Note: @0:00:14.553 in thread 5740
    Note: instruction: data16 cmp    %ax %cx
     
    Error #10: UNINITIALIZED READ: reading register cx
    # 0 KERNELBASE.dll!GetUserInfo                                                +0xeb     (0x75422112 <KERNELBASE.dll+0x22112>)
    # 1 KERNELBASE.dll!CompareStringOrdinal                                       +0x452    (0x75418282 <KERNELBASE.dll+0x18282>)
    # 2 KERNELBASE.dll!GetLocaleInfoW                                             +0x70     (0x754134c8 <KERNELBASE.dll+0x134c8>)
    # 3 Qt5Core.dll!Z17qt_localeFromLCIDm                                         +0x1eb    (0x68906fcc <Qt5Core.dll+0x86fcc>)
    # 4 Qt5Core.dll!ZN12QLibraryInfo12isDebugBuildEv                              +0x2af    (0x6888c790 <Qt5Core.dll+0xc790>)
    # 5 Qt5Core.dll!ZN14QFactoryLoaderC1EPKcRK7QStringN2Qt15CaseSensitivityE      +0x162    (0x68a2c563 <Qt5Core.dll+0x1ac563>)
    # 6 Qt5Gui.dll!ZNK15QPlatformScreen10topLevelAtERK6QPoint                     +0x362    (0x61951603 <Qt5Gui.dll+0x11603>)
    # 7 Qt5Gui.dll!ZN27QPlatformIntegrationFactory6createERK7QStringRK11QStringListS2_+0x54     (0x61951715 <Qt5Gui.dll+0x11715>)
    # 8 Qt5Gui.dll!ZN22QGuiApplicationPrivate25createPlatformIntegrationEv        +0x2f6    (0x61959d07 <Qt5Gui.dll+0x19d07>)
    # 9 Qt5Gui.dll!ZN22QGuiApplicationPrivate21createEventDispatcherEv            +0x44     (0x6195a785 <Qt5Gui.dll+0x1a785>)
    #10 Qt5Core.dll!ZN16QCoreApplication4initEv                                   +0x83     (0x68a360a4 <Qt5Core.dll+0x1b60a4>)
    #11 Qt5Core.dll!ZN16QCoreApplicationC2ER23QCoreApplicationPrivate             +0x73     (0x68a36154 <Qt5Core.dll+0x1b6154>)
    Note: @0:00:14.553 in thread 5740
    Note: instruction: data16 test   %cx %cx
     
    Error #11: UNINITIALIZED READ: reading register ax
    # 0 KERNELBASE.dll!GetUserInfo                                                +0x8f     (0x754220b6 <KERNELBASE.dll+0x220b6>)
    # 1 KERNELBASE.dll!GetLocaleInfoA                                             +0x3d2    (0x75428eba <KERNELBASE.dll+0x28eba>)
    # 2 KERNELBASE.dll!GetLocaleInfoW                                             +0x70     (0x754134c8 <KERNELBASE.dll+0x134c8>)
    # 3 Qt5Core.dll!Z17qt_localeFromLCIDm                                         +0x1eb    (0x68906fcc <Qt5Core.dll+0x86fcc>)
    # 4 Qt5Core.dll!ZN12QLibraryInfo12isDebugBuildEv                              +0x2af    (0x6888c790 <Qt5Core.dll+0xc790>)
    # 5 Qt5Core.dll!ZN14QFactoryLoaderC1EPKcRK7QStringN2Qt15CaseSensitivityE      +0x162    (0x68a2c563 <Qt5Core.dll+0x1ac563>)
    # 6 Qt5Gui.dll!ZNK15QPlatformScreen10topLevelAtERK6QPoint                     +0x362    (0x61951603 <Qt5Gui.dll+0x11603>)
    # 7 Qt5Gui.dll!ZN27QPlatformIntegrationFactory6createERK7QStringRK11QStringListS2_+0x54     (0x61951715 <Qt5Gui.dll+0x11715>)
    # 8 Qt5Gui.dll!ZN22QGuiApplicationPrivate25createPlatformIntegrationEv        +0x2f6    (0x61959d07 <Qt5Gui.dll+0x19d07>)
    # 9 Qt5Gui.dll!ZN22QGuiApplicationPrivate21createEventDispatcherEv            +0x44     (0x6195a785 <Qt5Gui.dll+0x1a785>)
    #10 Qt5Core.dll!ZN16QCoreApplication4initEv                                   +0x83     (0x68a360a4 <Qt5Core.dll+0x1b60a4>)
    #11 Qt5Core.dll!ZN16QCoreApplicationC2ER23QCoreApplicationPrivate             +0x73     (0x68a36154 <Qt5Core.dll+0x1b6154>)
    Note: @0:00:14.560 in thread 5740
    Note: instruction: data16 cmp    %ax %cx
     
    Error #12: UNINITIALIZED READ: reading register cx
    # 0 KERNELBASE.dll!GetUserInfo                                                +0xeb     (0x75422112 <KERNELBASE.dll+0x22112>)
    # 1 KERNELBASE.dll!GetLocaleInfoA                                             +0x3d2    (0x75428eba <KERNELBASE.dll+0x28eba>)
    # 2 KERNELBASE.dll!GetLocaleInfoW                                             +0x70     (0x754134c8 <KERNELBASE.dll+0x134c8>)
    # 3 Qt5Core.dll!Z17qt_localeFromLCIDm                                         +0x1eb    (0x68906fcc <Qt5Core.dll+0x86fcc>)
    # 4 Qt5Core.dll!ZN12QLibraryInfo12isDebugBuildEv                              +0x2af    (0x6888c790 <Qt5Core.dll+0xc790>)
    # 5 Qt5Core.dll!ZN14QFactoryLoaderC1EPKcRK7QStringN2Qt15CaseSensitivityE      +0x162    (0x68a2c563 <Qt5Core.dll+0x1ac563>)
    # 6 Qt5Gui.dll!ZNK15QPlatformScreen10topLevelAtERK6QPoint                     +0x362    (0x61951603 <Qt5Gui.dll+0x11603>)
    # 7 Qt5Gui.dll!ZN27QPlatformIntegrationFactory6createERK7QStringRK11QStringListS2_+0x54     (0x61951715 <Qt5Gui.dll+0x11715>)
    # 8 Qt5Gui.dll!ZN22QGuiApplicationPrivate25createPlatformIntegrationEv        +0x2f6    (0x61959d07 <Qt5Gui.dll+0x19d07>)
    # 9 Qt5Gui.dll!ZN22QGuiApplicationPrivate21createEventDispatcherEv            +0x44     (0x6195a785 <Qt5Gui.dll+0x1a785>)
    #10 Qt5Core.dll!ZN16QCoreApplication4initEv                                   +0x83     (0x68a360a4 <Qt5Core.dll+0x1b60a4>)
    #11 Qt5Core.dll!ZN16QCoreApplicationC2ER23QCoreApplicationPrivate             +0x73     (0x68a36154 <Qt5Core.dll+0x1b6154>)
    Note: @0:00:14.561 in thread 5740
    Note: instruction: data16 test   %cx %cx
     
    Error #13: UNINITIALIZED READ: reading register ax
    # 0 KERNELBASE.dll!GetUserInfo                                                +0x8f     (0x754220b6 <KERNELBASE.dll+0x220b6>)
    # 1 KERNELBASE.dll!GetLocaleInfoA                                             +0x577    (0x7542905f <KERNELBASE.dll+0x2905f>)
    # 2 KERNELBASE.dll!GetLocaleInfoW                                             +0x70     (0x754134c8 <KERNELBASE.dll+0x134c8>)
    # 3 Qt5Core.dll!Z17qt_localeFromLCIDm                                         +0x1eb    (0x68906fcc <Qt5Core.dll+0x86fcc>)
    # 4 Qt5Core.dll!ZN12QLibraryInfo12isDebugBuildEv                              +0x2af    (0x6888c790 <Qt5Core.dll+0xc790>)
    # 5 Qt5Core.dll!ZN14QFactoryLoaderC1EPKcRK7QStringN2Qt15CaseSensitivityE      +0x162    (0x68a2c563 <Qt5Core.dll+0x1ac563>)
    # 6 Qt5Gui.dll!ZNK15QPlatformScreen10topLevelAtERK6QPoint                     +0x362    (0x61951603 <Qt5Gui.dll+0x11603>)
    # 7 Qt5Gui.dll!ZN27QPlatformIntegrationFactory6createERK7QStringRK11QStringListS2_+0x54     (0x61951715 <Qt5Gui.dll+0x11715>)
    # 8 Qt5Gui.dll!ZN22QGuiApplicationPrivate25createPlatformIntegrationEv        +0x2f6    (0x61959d07 <Qt5Gui.dll+0x19d07>)
    # 9 Qt5Gui.dll!ZN22QGuiApplicationPrivate21createEventDispatcherEv            +0x44     (0x6195a785 <Qt5Gui.dll+0x1a785>)
    #10 Qt5Core.dll!ZN16QCoreApplication4initEv                                   +0x83     (0x68a360a4 <Qt5Core.dll+0x1b60a4>)
    #11 Qt5Core.dll!ZN16QCoreApplicationC2ER23QCoreApplicationPrivate             +0x73     (0x68a36154 <Qt5Core.dll+0x1b6154>)
    Note: @0:00:14.566 in thread 5740
    Note: instruction: data16 cmp    %ax %cx
     
    Error #14: UNINITIALIZED READ: reading register cx
    # 0 KERNELBASE.dll!GetUserInfo                                                +0xeb     (0x75422112 <KERNELBASE.dll+0x22112>)
    # 1 KERNELBASE.dll!GetLocaleInfoA                                             +0x577    (0x7542905f <KERNELBASE.dll+0x2905f>)
    # 2 KERNELBASE.dll!GetLocaleInfoW                                             +0x70     (0x754134c8 <KERNELBASE.dll+0x134c8>)
    # 3 Qt5Core.dll!Z17qt_localeFromLCIDm                                         +0x1eb    (0x68906fcc <Qt5Core.dll+0x86fcc>)
    # 4 Qt5Core.dll!ZN12QLibraryInfo12isDebugBuildEv                              +0x2af    (0x6888c790 <Qt5Core.dll+0xc790>)
    # 5 Qt5Core.dll!ZN14QFactoryLoaderC1EPKcRK7QStringN2Qt15CaseSensitivityE      +0x162    (0x68a2c563 <Qt5Core.dll+0x1ac563>)
    # 6 Qt5Gui.dll!ZNK15QPlatformScreen10topLevelAtERK6QPoint                     +0x362    (0x61951603 <Qt5Gui.dll+0x11603>)
    # 7 Qt5Gui.dll!ZN27QPlatformIntegrationFactory6createERK7QStringRK11QStringListS2_+0x54     (0x61951715 <Qt5Gui.dll+0x11715>)
    # 8 Qt5Gui.dll!ZN22QGuiApplicationPrivate25createPlatformIntegrationEv        +0x2f6    (0x61959d07 <Qt5Gui.dll+0x19d07>)
    # 9 Qt5Gui.dll!ZN22QGuiApplicationPrivate21createEventDispatcherEv            +0x44     (0x6195a785 <Qt5Gui.dll+0x1a785>)
    #10 Qt5Core.dll!ZN16QCoreApplication4initEv                                   +0x83     (0x68a360a4 <Qt5Core.dll+0x1b60a4>)
    #11 Qt5Core.dll!ZN16QCoreApplicationC2ER23QCoreApplicationPrivate             +0x73     (0x68a36154 <Qt5Core.dll+0x1b6154>)
    Note: @0:00:14.567 in thread 5740
    Note: instruction: data16 test   %cx %cx
     
    Error #15: UNINITIALIZED READ: reading register cx
    # 0 KERNELBASE.dll!GetUserInfoWord             +0x73     (0x75422201 <KERNELBASE.dll+0x22201>)
    # 1 KERNELBASE.dll!CompareStringOrdinal        +0x3f1    (0x75418221 <KERNELBASE.dll+0x18221>)
    # 2 KERNELBASE.dll!GetLocaleInfoW              +0x70     (0x754134c8 <KERNELBASE.dll+0x134c8>)
    # 3 GDI32.dll!ScriptRecordDigitSubstitution    +0x80     (0x76549e3e <GDI32.dll+0x19e3e>)
    # 4 GDI32.dll!UspAllocCache                    +0x5bb    (0x76549da2 <GDI32.dll+0x19da2>)
    # 5 GDI32.dll!ScriptRecordDigitSubstitution    +0x171    (0x76549f2f <GDI32.dll+0x19f2f>)
    # 6 GDI32.dll!GetTextExtentPointW              +0x19     (0x765494e9 <GDI32.dll+0x194e9>)
    # 7 USER32.dll!SoftModalMessageBox             +0x1ec    (0x76436fa6 <USER32.dll+0x36fa6>)
    # 8 USER32.dll!MessageBoxIndirectW             +0x1f4    (0x76436da5 <USER32.dll+0x36da5>)
    # 9 USER32.dll!MessageBoxTimeoutW              +0x8a     (0x7645e6fd <USER32.dll+0x5e6fd>)
    #10 USER32.dll!MessageBoxTimeoutA              +0xae     (0x7645e363 <USER32.dll+0x5e363>)
    #11 USER32.dll!MessageBoxExA                   +0x1a     (0x7645e3d2 <USER32.dll+0x5e3d2>)
    Note: @0:00:17.578 in thread 5740
    Note: instruction: data16 cmp    %cx %dx
     
    Error #16: UNINITIALIZED READ: reading register cx
    # 0 KERNELBASE.dll!CompareStringOrdinal        +0x401    (0x75418230 <KERNELBASE.dll+0x18230>)
    # 1 KERNELBASE.dll!GetLocaleInfoW              +0x70     (0x754134c8 <KERNELBASE.dll+0x134c8>)
    # 2 GDI32.dll!ScriptRecordDigitSubstitution    +0x80     (0x76549e3e <GDI32.dll+0x19e3e>)
    # 3 GDI32.dll!UspAllocCache                    +0x5bb    (0x76549da2 <GDI32.dll+0x19da2>)
    # 4 GDI32.dll!ScriptRecordDigitSubstitution    +0x171    (0x76549f2f <GDI32.dll+0x19f2f>)
    # 5 GDI32.dll!GetTextExtentPointW              +0x19     (0x765494e9 <GDI32.dll+0x194e9>)
    # 6 USER32.dll!SoftModalMessageBox             +0x1ec    (0x76436fa6 <USER32.dll+0x36fa6>)
    # 7 USER32.dll!MessageBoxIndirectW             +0x1f4    (0x76436da5 <USER32.dll+0x36da5>)
    # 8 USER32.dll!MessageBoxTimeoutW              +0x8a     (0x7645e6fd <USER32.dll+0x5e6fd>)
    # 9 USER32.dll!MessageBoxTimeoutA              +0xae     (0x7645e363 <USER32.dll+0x5e363>)
    #10 USER32.dll!MessageBoxExA                   +0x1a     (0x7645e3d2 <USER32.dll+0x5e3d2>)
    #11 USER32.dll!MessageBoxA                     +0x44     (0x7645e420 <USER32.dll+0x5e420>)
    Note: @0:00:17.581 in thread 5740
    Note: instruction: data16 cmp    %cx $0x0002
     
    Error #17: UNINITIALIZED READ: reading register ecx
    # 0 KERNELBASE.dll!LoadStringW                 +0xca     (0x75413c9b <KERNELBASE.dll+0x13c9b>)
    # 1 KERNELBASE.dll!GetLocaleInfoW              +0x70     (0x754134c8 <KERNELBASE.dll+0x134c8>)
    # 2 GDI32.dll!ScriptRecordDigitSubstitution    +0x80     (0x76549e3e <GDI32.dll+0x19e3e>)
    # 3 GDI32.dll!UspAllocCache                    +0x5bb    (0x76549da2 <GDI32.dll+0x19da2>)
    # 4 GDI32.dll!ScriptRecordDigitSubstitution    +0x171    (0x76549f2f <GDI32.dll+0x19f2f>)
    # 5 GDI32.dll!GetTextExtentPointW              +0x19     (0x765494e9 <GDI32.dll+0x194e9>)
    # 6 USER32.dll!SoftModalMessageBox             +0x1ec    (0x76436fa6 <USER32.dll+0x36fa6>)
    # 7 USER32.dll!MessageBoxIndirectW             +0x1f4    (0x76436da5 <USER32.dll+0x36da5>)
    # 8 USER32.dll!MessageBoxTimeoutW              +0x8a     (0x7645e6fd <USER32.dll+0x5e6fd>)
    # 9 USER32.dll!MessageBoxTimeoutA              +0xae     (0x7645e363 <USER32.dll+0x5e363>)
    #10 USER32.dll!MessageBoxExA                   +0x1a     (0x7645e3d2 <USER32.dll+0x5e3d2>)
    #11 USER32.dll!MessageBoxA                     +0x44     (0x7645e420 <USER32.dll+0x5e420>)
    Note: @0:00:17.583 in thread 5740
    Note: instruction: cmp    %ecx $0x0000000a
     
    Error #18: UNINITIALIZED READ: reading register eflags
    # 0 GDI32.dll!ScriptRecordDigitSubstitution    +0x96     (0x76549e53 <GDI32.dll+0x19e53>)
    # 1 GDI32.dll!UspAllocCache                    +0x5bb    (0x76549da2 <GDI32.dll+0x19da2>)
    # 2 GDI32.dll!ScriptRecordDigitSubstitution    +0x171    (0x76549f2f <GDI32.dll+0x19f2f>)
    # 3 GDI32.dll!GetTextExtentPointW              +0x19     (0x765494e9 <GDI32.dll+0x194e9>)
    # 4 USER32.dll!SoftModalMessageBox             +0x1ec    (0x76436fa6 <USER32.dll+0x36fa6>)
    # 5 USER32.dll!MessageBoxIndirectW             +0x1f4    (0x76436da5 <USER32.dll+0x36da5>)
    # 6 USER32.dll!MessageBoxTimeoutW              +0x8a     (0x7645e6fd <USER32.dll+0x5e6fd>)
    # 7 USER32.dll!MessageBoxTimeoutA              +0xae     (0x7645e363 <USER32.dll+0x5e363>)
    # 8 USER32.dll!MessageBoxExA                   +0x1a     (0x7645e3d2 <USER32.dll+0x5e3d2>)
    # 9 USER32.dll!MessageBoxA                     +0x44     (0x7645e420 <USER32.dll+0x5e420>)
    #10 msvcrt.dll!__crtMessageBoxA
    #11 msvcrt.dll!_NMSG_WRITE
    Note: @0:00:17.606 in thread 5740
    Note: instruction: jnz    $0x765d7c86
     
    Error #19: UNINITIALIZED READ: reading register ax
    # 0 KERNELBASE.dll!GetUserInfo                 +0x8f     (0x754220b6 <KERNELBASE.dll+0x220b6>)
    # 1 KERNELBASE.dll!CompareStringOrdinal        +0x452    (0x75418282 <KERNELBASE.dll+0x18282>)
    # 2 KERNELBASE.dll!GetLocaleInfoW              +0x70     (0x754134c8 <KERNELBASE.dll+0x134c8>)
    # 3 GDI32.dll!ScriptRecordDigitSubstitution    +0xba     (0x76549e78 <GDI32.dll+0x19e78>)
    # 4 GDI32.dll!UspAllocCache                    +0x5bb    (0x76549da2 <GDI32.dll+0x19da2>)
    # 5 GDI32.dll!ScriptRecordDigitSubstitution    +0x171    (0x76549f2f <GDI32.dll+0x19f2f>)
    # 6 GDI32.dll!GetTextExtentPointW              +0x19     (0x765494e9 <GDI32.dll+0x194e9>)
    # 7 USER32.dll!SoftModalMessageBox             +0x1ec    (0x76436fa6 <USER32.dll+0x36fa6>)
    # 8 USER32.dll!MessageBoxIndirectW             +0x1f4    (0x76436da5 <USER32.dll+0x36da5>)
    # 9 USER32.dll!MessageBoxTimeoutW              +0x8a     (0x7645e6fd <USER32.dll+0x5e6fd>)
    #10 USER32.dll!MessageBoxTimeoutA              +0xae     (0x7645e363 <USER32.dll+0x5e363>)
    #11 USER32.dll!MessageBoxExA                   +0x1a     (0x7645e3d2 <USER32.dll+0x5e3d2>)
    Note: @0:00:17.607 in thread 5740
    Note: instruction: data16 cmp    %ax %cx
     
    Error #20: UNINITIALIZED READ: reading register cx
    # 0 KERNELBASE.dll!GetUserInfo                 +0xeb     (0x75422112 <KERNELBASE.dll+0x22112>)
    # 1 KERNELBASE.dll!CompareStringOrdinal        +0x452    (0x75418282 <KERNELBASE.dll+0x18282>)
    # 2 KERNELBASE.dll!GetLocaleInfoW              +0x70     (0x754134c8 <KERNELBASE.dll+0x134c8>)
    # 3 GDI32.dll!ScriptRecordDigitSubstitution    +0xba     (0x76549e78 <GDI32.dll+0x19e78>)
    # 4 GDI32.dll!UspAllocCache                    +0x5bb    (0x76549da2 <GDI32.dll+0x19da2>)
    # 5 GDI32.dll!ScriptRecordDigitSubstitution    +0x171    (0x76549f2f <GDI32.dll+0x19f2f>)
    # 6 GDI32.dll!GetTextExtentPointW              +0x19     (0x765494e9 <GDI32.dll+0x194e9>)
    # 7 USER32.dll!SoftModalMessageBox             +0x1ec    (0x76436fa6 <USER32.dll+0x36fa6>)
    # 8 USER32.dll!MessageBoxIndirectW             +0x1f4    (0x76436da5 <USER32.dll+0x36da5>)
    # 9 USER32.dll!MessageBoxTimeoutW              +0x8a     (0x7645e6fd <USER32.dll+0x5e6fd>)
    #10 USER32.dll!MessageBoxTimeoutA              +0xae     (0x7645e363 <USER32.dll+0x5e363>)
    #11 USER32.dll!MessageBoxExA                   +0x1a     (0x7645e3d2 <USER32.dll+0x5e3d2>)
    Note: @0:00:17.608 in thread 5740
    Note: instruction: data16 test   %cx %cx
     
    Error #21: UNINITIALIZED READ: reading register eax
    # 0 ntdll.dll!RtlCheckTokenMembershipEx    +0x1e0    (0x77ab587a <ntdll.dll+0x3587a>)
    # 1 KERNELBASE.dll!AllocateAndInitializeSid+0x2b     (0x75412206 <KERNELBASE.dll+0x12206>)
    # 2 KERNELBASE.dll!CheckTokenMembershipEx  +0x30     (0x754193ff <KERNELBASE.dll+0x193ff>)
    # 3 IMM32.dll!CtfImmTIMActivate            +0x7a     (0x763d2781 <IMM32.dll+0x2781>)
    # 4 USER32.dll!WCSToMBEx                   +0xaa     (0x76413da4 <USER32.dll+0x13da4>)
    # 5 USER32.dll!IsCharAlphaNumericW         +0x27f    (0x7641397f <USER32.dll+0x1397f>)
    # 6 USER32.dll!IsCharAlphaNumericW         +0x1c2    (0x764138c2 <USER32.dll+0x138c2>)
    # 7 USER32.dll!gapfnScSendMessage          +0x14a    (0x76407443 <USER32.dll+0x7443>)
    # 8 USER32.dll!IsThreadDesktopComposited   +0x15c    (0x76407630 <USER32.dll+0x7630>)
    # 9 USER32.dll!ConsoleControl              +0x4b0    (0x76409e80 <USER32.dll+0x9e80>)
    #10 USER32.dll!ConsoleControl              +0x56d    (0x76409f3d <USER32.dll+0x9f3d>)
    #11 USER32.dll!GetWindowMinimizeRect       +0x531    (0x764125b6 <USER32.dll+0x125b6>)
    Note: @0:00:21.508 in thread 5740
    Note: instruction: test   %eax %eax
     
    Error #22: UNINITIALIZED READ: reading register eax
    # 0 USER32.dll!Ordinal1550             +0x3ea    (0x76460544 <USER32.dll+0x60544>)
    # 1 USER32.dll!Ordinal1550             +0x2f3    (0x7646044e <USER32.dll+0x6044e>)
    # 2 USER32.dll!IsWow64Message          +0x10080  (0x7647744d <USER32.dll+0x7744d>)
    # 3 USER32.dll!DrawStateW              +0x37d    (0x7641e070 <USER32.dll+0x1e070>)
    # 4 USER32.dll!gapfnScSendMessage      +0x14a    (0x76407443 <USER32.dll+0x7443>)
    # 5 USER32.dll!FillRect                +0x16f    (0x7640b578 <USER32.dll+0xb578>)
    # 6 USER32.dll!ConsoleControl          +0x4b0    (0x76409e80 <USER32.dll+0x9e80>)
    # 7 USER32.dll!GetWindowMinimizeRect   +0x282    (0x76412307 <USER32.dll+0x12307>)
    # 8 USER32.dll!GetWindowMinimizeRect   +0x531    (0x764125b6 <USER32.dll+0x125b6>)
    # 9 USER32.dll!SetKeyboardState        +0xa66    (0x7641fab0 <USER32.dll+0x1fab0>)
    #10 USER32.dll!GetDialogBaseUnits      +0x3ec    (0x7642c123 <USER32.dll+0x2c123>)
    #11 USER32.dll!SoftModalMessageBox     +0x5c0    (0x7643737a <USER32.dll+0x3737a>)
    Note: @0:00:21.922 in thread 5740
    Note: instruction: cmp    %ecx %eax
     
    Error #23: UNINITIALIZED READ: reading register edi
    # 0 USER32.dll!DrawStateA                  +0xe06    (0x7645df0b <USER32.dll+0x5df0b>)
    # 1 USER32.dll!IsWow64Message              +0xe82a   (0x76475bf7 <USER32.dll+0x75bf7>)
    # 2 USER32.dll!gapfnScSendMessage          +0x14a    (0x76407443 <USER32.dll+0x7443>)
    # 3 USER32.dll!Ordinal2518                 +0xa13    (0x7641dcbe <USER32.dll+0x1dcbe>)
    # 4 USER32.dll!Ordinal2518                 +0x34a    (0x7641d5f5 <USER32.dll+0x1d5f5>)
    # 5 USER32.dll!Ordinal2518                 +0x708    (0x7641d9b3 <USER32.dll+0x1d9b3>)
    # 6 USER32.dll!gapfnScSendMessage          +0x14a    (0x76407443 <USER32.dll+0x7443>)
    # 7 USER32.dll!IsThreadDesktopComposited   +0x15c    (0x76407630 <USER32.dll+0x7630>)
    # 8 USER32.dll!ChangeDisplaySettingsExW    +0x30a    (0x7641c31a <USER32.dll+0x1c31a>)
    # 9 USER32.dll!DrawStateW                  +0xf3c    (0x7641ec2f <USER32.dll+0x1ec2f>)
    #10 USER32.dll!GetDialogBaseUnits          +0x3ec    (0x7642c123 <USER32.dll+0x2c123>)
    #11 USER32.dll!SoftModalMessageBox         +0x5c0    (0x7643737a <USER32.dll+0x3737a>)
    Note: @0:00:21.985 in thread 5740
    Note: instruction: test   %edi %edi
     
    Error #24: UNINITIALIZED READ: reading register eax
    # 0 ntdll.dll!RtlCheckTokenMembershipEx    +0x1e0    (0x77ab587a <ntdll.dll+0x3587a>)
    # 1 KERNELBASE.dll!AllocateAndInitializeSid+0x2b     (0x75412206 <KERNELBASE.dll+0x12206>)
    # 2 KERNELBASE.dll!CheckTokenMembershipEx  +0x30     (0x754193ff <KERNELBASE.dll+0x193ff>)
    # 3 IMM32.dll!ImmCreateIMCC                +0x5b3    (0x763d58e9 <IMM32.dll+0x58e9>)
    # 4 IMM32.dll!ImmGetAppCompatFlags         +0x223    (0x763d403b <IMM32.dll+0x403b>)
    # 5 USER32.dll!GetScrollInfo               +0x879    (0x76415d2c <USER32.dll+0x15d2c>)
    # 6 USER32.dll!IsCharAlphaNumericW         +0x27f    (0x7641397f <USER32.dll+0x1397f>)
    # 7 USER32.dll!IsCharAlphaNumericW         +0x1c2    (0x764138c2 <USER32.dll+0x138c2>)
    # 8 USER32.dll!gapfnScSendMessage          +0x14a    (0x76407443 <USER32.dll+0x7443>)
    # 9 USER32.dll!IsThreadDesktopComposited   +0x15c    (0x76407630 <USER32.dll+0x7630>)
    #10 USER32.dll!ConsoleControl              +0x4b0    (0x76409e80 <USER32.dll+0x9e80>)
    #11 USER32.dll!ConsoleControl              +0x56d    (0x76409f3d <USER32.dll+0x9f3d>)
    Note: @0:00:22.150 in thread 5740
    Note: instruction: test   %eax %eax
     
    Error #25: UNADDRESSABLE ACCESS: writing 0x0023d7c8-0x0023d7cc 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng  +0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng  +0x2e59   (0x74f84203 <bcryptPrimitives.dll+0x4203>)
    # 2 bcryptPrimitives.dll!ProcessPrng  +0x3018   (0x74f843c2 <bcryptPrimitives.dll+0x43c2>)
    # 3 bcryptPrimitives.dll!ProcessPrng  +0x3120   (0x74f844ca <bcryptPrimitives.dll+0x44ca>)
    # 4 bcryptPrimitives.dll!ProcessPrng  +0x3cd8   (0x74f85082 <bcryptPrimitives.dll+0x5082>)
    # 5 bcryptPrimitives.dll!ProcessPrng  +0x3c37   (0x74f84fe1 <bcryptPrimitives.dll+0x4fe1>)
    # 6 bcryptPrimitives.dll!ProcessPrng  +0x44fc   (0x74f858a6 <bcryptPrimitives.dll+0x58a6>)
    # 7 bcryptPrimitives.dll!ProcessPrng  +0x371b   (0x74f84ac5 <bcryptPrimitives.dll+0x4ac5>)
    # 8 ntdll.dll!RtlAddMandatoryAce      +0x14f    (0x77a9ed9a <ntdll.dll+0x1ed9a>)
    # 9 ntdll.dll!RtlAddMandatoryAce      +0x1c5    (0x77a9ee10 <ntdll.dll+0x1ee10>)
    #10 ntdll.dll!LdrResSearchResource    +0x1ea7   (0x77abd2cc <ntdll.dll+0x3d2cc>)
    #11 ntdll.dll!LdrResSearchResource    +0x1c4e   (0x77abd073 <ntdll.dll+0x3d073>)
    Note: @0:00:22.885 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)
     
    Error #26: UNADDRESSABLE ACCESS: writing 0x0023d830-0x0023d834 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng    +0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng    +0x304f   (0x74f843f9 <bcryptPrimitives.dll+0x43f9>)
    # 2 ntdll.dll!RtlInitializeSListHead    +0x1c     (0x77a99a33 <ntdll.dll+0x19a33>)
    # 3 bcryptPrimitives.dll!ProcessPrng    +0x3120   (0x74f844ca <bcryptPrimitives.dll+0x44ca>)
    # 4 bcryptPrimitives.dll!ProcessPrng    +0x3cd8   (0x74f85082 <bcryptPrimitives.dll+0x5082>)
    # 5 bcryptPrimitives.dll!ProcessPrng    +0x3c37   (0x74f84fe1 <bcryptPrimitives.dll+0x4fe1>)
    # 6 bcryptPrimitives.dll!ProcessPrng    +0x44fc   (0x74f858a6 <bcryptPrimitives.dll+0x58a6>)
    # 7 bcryptPrimitives.dll!ProcessPrng    +0x371b   (0x74f84ac5 <bcryptPrimitives.dll+0x4ac5>)
    # 8 ntdll.dll!RtlAddMandatoryAce        +0x14f    (0x77a9ed9a <ntdll.dll+0x1ed9a>)
    # 9 ntdll.dll!RtlAddMandatoryAce        +0x1c5    (0x77a9ee10 <ntdll.dll+0x1ee10>)
    #10 ntdll.dll!LdrResSearchResource      +0x1ea7   (0x77abd2cc <ntdll.dll+0x3d2cc>)
    #11 ntdll.dll!LdrResSearchResource      +0x1c4e   (0x77abd073 <ntdll.dll+0x3d073>)
    Note: @0:00:22.889 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)
     
    Error #27: UNADDRESSABLE ACCESS: writing 0x0023dad0-0x0023dad4 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng         +0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng         +0x3192   (0x74f8453c <bcryptPrimitives.dll+0x453c>)
    # 2 ntdll.dll!RtlInitializeSListHead         +0x1c     (0x77a99a33 <ntdll.dll+0x19a33>)
    # 3 bcryptPrimitives.dll!ProcessPrng         +0x3cd8   (0x74f85082 <bcryptPrimitives.dll+0x5082>)
    # 4 bcryptPrimitives.dll!ProcessPrng         +0x3c37   (0x74f84fe1 <bcryptPrimitives.dll+0x4fe1>)
    # 5 bcryptPrimitives.dll!ProcessPrng         +0x44fc   (0x74f858a6 <bcryptPrimitives.dll+0x58a6>)
    # 6 bcryptPrimitives.dll!ProcessPrng         +0x371b   (0x74f84ac5 <bcryptPrimitives.dll+0x4ac5>)
    # 7 ntdll.dll!RtlAddMandatoryAce             +0x14f    (0x77a9ed9a <ntdll.dll+0x1ed9a>)
    # 8 ntdll.dll!RtlAddMandatoryAce             +0x1c5    (0x77a9ee10 <ntdll.dll+0x1ee10>)
    # 9 ntdll.dll!LdrResSearchResource           +0x1ea7   (0x77abd2cc <ntdll.dll+0x3d2cc>)
    #10 ntdll.dll!LdrResSearchResource           +0x1c4e   (0x77abd073 <ntdll.dll+0x3d073>)
    #11 ntdll.dll!LdrResFindResourceDirectory    +0x696    (0x77abdfc0 <ntdll.dll+0x3dfc0>)
    Note: @0:00:22.894 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)

  5. #5
    Futur Membre du Club
    Profil pro
    Inscrit en
    Novembre 2010
    Messages
    8
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Novembre 2010
    Messages : 8
    Points : 5
    Points
    5
    Par défaut Et la suite (désolé que ce soit si long...)
    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
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    Error #28: UNADDRESSABLE ACCESS: writing 0x0023dad0-0x0023dad4 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng         +0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng         +0x3192   (0x74f8453c <bcryptPrimitives.dll+0x453c>)
    # 2 ntdll.dll!RtlInitializeSListHead         +0x1c     (0x77a99a33 <ntdll.dll+0x19a33>)
    # 3 UxTheme.dll!Ordinal96                    +0xc      (0x742aa637 <UxTheme.dll+0x2a637>)
    # 4 bcryptPrimitives.dll!ProcessPrng         +0x44fc   (0x74f858a6 <bcryptPrimitives.dll+0x58a6>)
    # 5 bcryptPrimitives.dll!ProcessPrng         +0x371b   (0x74f84ac5 <bcryptPrimitives.dll+0x4ac5>)
    # 6 ntdll.dll!RtlAddMandatoryAce             +0x14f    (0x77a9ed9a <ntdll.dll+0x1ed9a>)
    # 7 ntdll.dll!RtlAddMandatoryAce             +0x1c5    (0x77a9ee10 <ntdll.dll+0x1ee10>)
    # 8 ntdll.dll!LdrResSearchResource           +0x1ea7   (0x77abd2cc <ntdll.dll+0x3d2cc>)
    # 9 ntdll.dll!LdrResSearchResource           +0x1c4e   (0x77abd073 <ntdll.dll+0x3d073>)
    #10 ntdll.dll!LdrResFindResourceDirectory    +0x696    (0x77abdfc0 <ntdll.dll+0x3dfc0>)
    #11 ntdll.dll!LdrResSearchResource           +0x1bc8   (0x77abcfed <ntdll.dll+0x3cfed>)
    Note: @0:00:22.896 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)
     
    Error #29: UNADDRESSABLE ACCESS: writing 0x0023d7d8-0x0023d7dc 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng  +0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng  +0x2e59   (0x74f84203 <bcryptPrimitives.dll+0x4203>)
    # 2 bcryptPrimitives.dll!ProcessPrng  +0x3018   (0x74f843c2 <bcryptPrimitives.dll+0x43c2>)
    # 3 bcryptPrimitives.dll!ProcessPrng  +0x3120   (0x74f844ca <bcryptPrimitives.dll+0x44ca>)
    # 4 bcryptPrimitives.dll!ProcessPrng  +0x3cd8   (0x74f85082 <bcryptPrimitives.dll+0x5082>)
    # 5 bcryptPrimitives.dll!ProcessPrng  +0x45d8   (0x74f85982 <bcryptPrimitives.dll+0x5982>)
    # 6 bcryptPrimitives.dll!ProcessPrng  +0x44fc   (0x74f858a6 <bcryptPrimitives.dll+0x58a6>)
    # 7 bcryptPrimitives.dll!ProcessPrng  +0x371b   (0x74f84ac5 <bcryptPrimitives.dll+0x4ac5>)
    # 8 ntdll.dll!RtlAddMandatoryAce      +0x14f    (0x77a9ed9a <ntdll.dll+0x1ed9a>)
    # 9 ntdll.dll!RtlAddMandatoryAce      +0x1c5    (0x77a9ee10 <ntdll.dll+0x1ee10>)
    #10 ntdll.dll!LdrResSearchResource    +0x1ea7   (0x77abd2cc <ntdll.dll+0x3d2cc>)
    #11 ntdll.dll!LdrResSearchResource    +0x1c4e   (0x77abd073 <ntdll.dll+0x3d073>)
    Note: @0:00:22.903 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)
     
    Error #30: UNADDRESSABLE ACCESS: writing 0x0023d840-0x0023d844 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng    +0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng    +0x304f   (0x74f843f9 <bcryptPrimitives.dll+0x43f9>)
    # 2 ntdll.dll!RtlInitializeSListHead    +0x1c     (0x77a99a33 <ntdll.dll+0x19a33>)
    # 3 bcryptPrimitives.dll!ProcessPrng    +0x3120   (0x74f844ca <bcryptPrimitives.dll+0x44ca>)
    # 4 bcryptPrimitives.dll!ProcessPrng    +0x3cd8   (0x74f85082 <bcryptPrimitives.dll+0x5082>)
    # 5 bcryptPrimitives.dll!ProcessPrng    +0x45d8   (0x74f85982 <bcryptPrimitives.dll+0x5982>)
    # 6 bcryptPrimitives.dll!ProcessPrng    +0x44fc   (0x74f858a6 <bcryptPrimitives.dll+0x58a6>)
    # 7 bcryptPrimitives.dll!ProcessPrng    +0x371b   (0x74f84ac5 <bcryptPrimitives.dll+0x4ac5>)
    # 8 ntdll.dll!RtlAddMandatoryAce        +0x14f    (0x77a9ed9a <ntdll.dll+0x1ed9a>)
    # 9 ntdll.dll!RtlAddMandatoryAce        +0x1c5    (0x77a9ee10 <ntdll.dll+0x1ee10>)
    #10 ntdll.dll!LdrResSearchResource      +0x1ea7   (0x77abd2cc <ntdll.dll+0x3d2cc>)
    #11 ntdll.dll!LdrResSearchResource      +0x1c4e   (0x77abd073 <ntdll.dll+0x3d073>)
    Note: @0:00:22.904 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)
     
    Error #31: UNADDRESSABLE ACCESS: writing 0x0023dae0-0x0023dae4 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng         +0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng         +0x3192   (0x74f8453c <bcryptPrimitives.dll+0x453c>)
    # 2 ntdll.dll!RtlInitializeSListHead         +0x1c     (0x77a99a33 <ntdll.dll+0x19a33>)
    # 3 bcryptPrimitives.dll!ProcessPrng         +0x3cd8   (0x74f85082 <bcryptPrimitives.dll+0x5082>)
    # 4 bcryptPrimitives.dll!ProcessPrng         +0x45d8   (0x74f85982 <bcryptPrimitives.dll+0x5982>)
    # 5 bcryptPrimitives.dll!ProcessPrng         +0x44fc   (0x74f858a6 <bcryptPrimitives.dll+0x58a6>)
    # 6 bcryptPrimitives.dll!ProcessPrng         +0x371b   (0x74f84ac5 <bcryptPrimitives.dll+0x4ac5>)
    # 7 ntdll.dll!RtlAddMandatoryAce             +0x14f    (0x77a9ed9a <ntdll.dll+0x1ed9a>)
    # 8 ntdll.dll!RtlAddMandatoryAce             +0x1c5    (0x77a9ee10 <ntdll.dll+0x1ee10>)
    # 9 ntdll.dll!LdrResSearchResource           +0x1ea7   (0x77abd2cc <ntdll.dll+0x3d2cc>)
    #10 ntdll.dll!LdrResSearchResource           +0x1c4e   (0x77abd073 <ntdll.dll+0x3d073>)
    #11 ntdll.dll!LdrResFindResourceDirectory    +0x696    (0x77abdfc0 <ntdll.dll+0x3dfc0>)
    Note: @0:00:22.905 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)
     
    Error #32: UNADDRESSABLE ACCESS: writing 0x0023d930-0x0023d934 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng         +0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng         +0x2b5f   (0x74f83f09 <bcryptPrimitives.dll+0x3f09>)
    # 2 ntdll.dll!RtlInitializeSListHead         +0x1c     (0x77a99a33 <ntdll.dll+0x19a33>)
    # 3 bcryptPrimitives.dll!ProcessPrng         +0x45ed   (0x74f85997 <bcryptPrimitives.dll+0x5997>)
    # 4 bcryptPrimitives.dll!ProcessPrng         +0x44fc   (0x74f858a6 <bcryptPrimitives.dll+0x58a6>)
    # 5 bcryptPrimitives.dll!ProcessPrng         +0x371b   (0x74f84ac5 <bcryptPrimitives.dll+0x4ac5>)
    # 6 ntdll.dll!RtlAddMandatoryAce             +0x14f    (0x77a9ed9a <ntdll.dll+0x1ed9a>)
    # 7 ntdll.dll!RtlAddMandatoryAce             +0x1c5    (0x77a9ee10 <ntdll.dll+0x1ee10>)
    # 8 ntdll.dll!LdrResSearchResource           +0x1ea7   (0x77abd2cc <ntdll.dll+0x3d2cc>)
    # 9 ntdll.dll!LdrResSearchResource           +0x1c4e   (0x77abd073 <ntdll.dll+0x3d073>)
    #10 ntdll.dll!LdrResFindResourceDirectory    +0x696    (0x77abdfc0 <ntdll.dll+0x3dfc0>)
    #11 ntdll.dll!LdrResSearchResource           +0x1bc8   (0x77abcfed <ntdll.dll+0x3cfed>)
    Note: @0:00:22.909 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)
     
    Error #33: UNADDRESSABLE ACCESS: writing 0x0023d930-0x0023d934 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng         +0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng         +0x2cc2   (0x74f8406c <bcryptPrimitives.dll+0x406c>)
    # 2 ntdll.dll!RtlInitializeSListHead         +0x1c     (0x77a99a33 <ntdll.dll+0x19a33>)
    # 3 bcryptPrimitives.dll!ProcessPrng         +0x45ed   (0x74f85997 <bcryptPrimitives.dll+0x5997>)
    # 4 bcryptPrimitives.dll!ProcessPrng         +0x44fc   (0x74f858a6 <bcryptPrimitives.dll+0x58a6>)
    # 5 bcryptPrimitives.dll!ProcessPrng         +0x371b   (0x74f84ac5 <bcryptPrimitives.dll+0x4ac5>)
    # 6 ntdll.dll!RtlAddMandatoryAce             +0x14f    (0x77a9ed9a <ntdll.dll+0x1ed9a>)
    # 7 ntdll.dll!RtlAddMandatoryAce             +0x1c5    (0x77a9ee10 <ntdll.dll+0x1ee10>)
    # 8 ntdll.dll!LdrResSearchResource           +0x1ea7   (0x77abd2cc <ntdll.dll+0x3d2cc>)
    # 9 ntdll.dll!LdrResSearchResource           +0x1c4e   (0x77abd073 <ntdll.dll+0x3d073>)
    #10 ntdll.dll!LdrResFindResourceDirectory    +0x696    (0x77abdfc0 <ntdll.dll+0x3dfc0>)
    #11 ntdll.dll!LdrResSearchResource           +0x1bc8   (0x77abcfed <ntdll.dll+0x3cfed>)
    Note: @0:00:22.912 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)
     
    Error #34: UNADDRESSABLE ACCESS: writing 0x0023ddb8-0x0023ddbc 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng+0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng+0x2b5f   (0x74f83f09 <bcryptPrimitives.dll+0x3f09>)
    # 2 bcryptPrimitives.dll!ProcessPrng+0x2d50   (0x74f840fa <bcryptPrimitives.dll+0x40fa>)
    # 3 bcryptPrimitives.dll!ProcessPrng+0x3bbb   (0x74f84f65 <bcryptPrimitives.dll+0x4f65>)
    # 4 bcryptPrimitives.dll!ProcessPrng+0x34     (0x74f813de <bcryptPrimitives.dll+0x13de>)
    # 5 CRYPTBASE.dll!SystemFunction036+0x10     (0x74fe11e1 <CRYPTBASE.dll+0x11e1>)
    # 6 RPCRT4.dll!UuidCreate          +0x11     (0x75ff80da <RPCRT4.dll+0x80da>)
    # 7 combase.dll!DllGetClassObject  +0x4e4    (0x75bb28b2 <combase.dll+0x228b2>)
    # 8 combase.dll!DllGetClassObject  +0x9d1    (0x75bb2d9f <combase.dll+0x22d9f>)
    # 9 combase.dll!CoGetClassObject   +0xe08    (0x75bc4307 <combase.dll+0x34307>)
    #10 combase.dll!CoUninitialize     +0x702    (0x75ba9d40 <combase.dll+0x19d40>)
    #11 combase.dll!CoInitializeEx     +0x41     (0x75ba9e37 <combase.dll+0x19e37>)
    Note: @0:00:22.950 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)
     
    Error #35: UNADDRESSABLE ACCESS: writing 0x0023ddb8-0x0023ddbc 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng+0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng+0x2cc2   (0x74f8406c <bcryptPrimitives.dll+0x406c>)
    # 2 bcryptPrimitives.dll!ProcessPrng+0x2d50   (0x74f840fa <bcryptPrimitives.dll+0x40fa>)
    # 3 bcryptPrimitives.dll!ProcessPrng+0x3bbb   (0x74f84f65 <bcryptPrimitives.dll+0x4f65>)
    # 4 bcryptPrimitives.dll!ProcessPrng+0x34     (0x74f813de <bcryptPrimitives.dll+0x13de>)
    # 5 CRYPTBASE.dll!SystemFunction036+0x10     (0x74fe11e1 <CRYPTBASE.dll+0x11e1>)
    # 6 RPCRT4.dll!UuidCreate          +0x11     (0x75ff80da <RPCRT4.dll+0x80da>)
    # 7 combase.dll!DllGetClassObject  +0x4e4    (0x75bb28b2 <combase.dll+0x228b2>)
    # 8 combase.dll!DllGetClassObject  +0x9d1    (0x75bb2d9f <combase.dll+0x22d9f>)
    # 9 combase.dll!CoGetClassObject   +0xe08    (0x75bc4307 <combase.dll+0x34307>)
    #10 combase.dll!CoUninitialize     +0x702    (0x75ba9d40 <combase.dll+0x19d40>)
    #11 combase.dll!CoInitializeEx     +0x41     (0x75ba9e37 <combase.dll+0x19e37>)
    Note: @0:00:22.955 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)
     
    Error #36: UNADDRESSABLE ACCESS: writing 0x0023dc38-0x0023dc3c 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng+0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng+0x2e59   (0x74f84203 <bcryptPrimitives.dll+0x4203>)
    # 2 bcryptPrimitives.dll!ProcessPrng+0x3018   (0x74f843c2 <bcryptPrimitives.dll+0x43c2>)
    # 3 bcryptPrimitives.dll!ProcessPrng+0x3120   (0x74f844ca <bcryptPrimitives.dll+0x44ca>)
    # 4 bcryptPrimitives.dll!ProcessPrng+0x3cd8   (0x74f85082 <bcryptPrimitives.dll+0x5082>)
    # 5 bcryptPrimitives.dll!ProcessPrng+0x3c37   (0x74f84fe1 <bcryptPrimitives.dll+0x4fe1>)
    # 6 bcryptPrimitives.dll!ProcessPrng+0x3bd9   (0x74f84f83 <bcryptPrimitives.dll+0x4f83>)
    # 7 bcryptPrimitives.dll!ProcessPrng+0x34     (0x74f813de <bcryptPrimitives.dll+0x13de>)
    # 8 CRYPTBASE.dll!SystemFunction036+0x10     (0x74fe11e1 <CRYPTBASE.dll+0x11e1>)
    # 9 RPCRT4.dll!UuidCreate          +0x11     (0x75ff80da <RPCRT4.dll+0x80da>)
    #10 combase.dll!DllGetClassObject  +0x4e4    (0x75bb28b2 <combase.dll+0x228b2>)
    #11 combase.dll!DllGetClassObject  +0x9d1    (0x75bb2d9f <combase.dll+0x22d9f>)
    Note: @0:00:22.961 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)
     
    Error #37: UNADDRESSABLE ACCESS: writing 0x0023dca0-0x0023dca4 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng+0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng+0x304f   (0x74f843f9 <bcryptPrimitives.dll+0x43f9>)
    # 2 bcryptPrimitives.dll!ProcessPrng+0x3120   (0x74f844ca <bcryptPrimitives.dll+0x44ca>)
    # 3 bcryptPrimitives.dll!ProcessPrng+0x3cd8   (0x74f85082 <bcryptPrimitives.dll+0x5082>)
    # 4 bcryptPrimitives.dll!ProcessPrng+0x3c37   (0x74f84fe1 <bcryptPrimitives.dll+0x4fe1>)
    # 5 bcryptPrimitives.dll!ProcessPrng+0x3bd9   (0x74f84f83 <bcryptPrimitives.dll+0x4f83>)
    # 6 bcryptPrimitives.dll!ProcessPrng+0x34     (0x74f813de <bcryptPrimitives.dll+0x13de>)
    # 7 CRYPTBASE.dll!SystemFunction036+0x10     (0x74fe11e1 <CRYPTBASE.dll+0x11e1>)
    # 8 RPCRT4.dll!UuidCreate          +0x11     (0x75ff80da <RPCRT4.dll+0x80da>)
    # 9 combase.dll!DllGetClassObject  +0x4e4    (0x75bb28b2 <combase.dll+0x228b2>)
    #10 combase.dll!DllGetClassObject  +0x9d1    (0x75bb2d9f <combase.dll+0x22d9f>)
    #11 combase.dll!CoGetClassObject   +0xe08    (0x75bc4307 <combase.dll+0x34307>)
    Note: @0:00:22.962 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)
     
    Error #38: UNADDRESSABLE ACCESS: writing 0x0023df40-0x0023df44 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng+0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng+0x3192   (0x74f8453c <bcryptPrimitives.dll+0x453c>)
    # 2 bcryptPrimitives.dll!ProcessPrng+0x3cd8   (0x74f85082 <bcryptPrimitives.dll+0x5082>)
    # 3 bcryptPrimitives.dll!ProcessPrng+0x3c37   (0x74f84fe1 <bcryptPrimitives.dll+0x4fe1>)
    # 4 bcryptPrimitives.dll!ProcessPrng+0x3bd9   (0x74f84f83 <bcryptPrimitives.dll+0x4f83>)
    # 5 bcryptPrimitives.dll!ProcessPrng+0x34     (0x74f813de <bcryptPrimitives.dll+0x13de>)
    # 6 CRYPTBASE.dll!SystemFunction036+0x10     (0x74fe11e1 <CRYPTBASE.dll+0x11e1>)
    # 7 RPCRT4.dll!UuidCreate          +0x11     (0x75ff80da <RPCRT4.dll+0x80da>)
    # 8 combase.dll!DllGetClassObject  +0x4e4    (0x75bb28b2 <combase.dll+0x228b2>)
    # 9 combase.dll!DllGetClassObject  +0x9d1    (0x75bb2d9f <combase.dll+0x22d9f>)
    #10 combase.dll!CoGetClassObject   +0xe08    (0x75bc4307 <combase.dll+0x34307>)
    #11 combase.dll!CoUninitialize     +0x702    (0x75ba9d40 <combase.dll+0x19d40>)
    Note: @0:00:22.963 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)
     
    Error #39: UNADDRESSABLE ACCESS: writing 0x0023dc30-0x0023dc34 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng+0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng+0x2e59   (0x74f84203 <bcryptPrimitives.dll+0x4203>)
    # 2 bcryptPrimitives.dll!ProcessPrng+0x3018   (0x74f843c2 <bcryptPrimitives.dll+0x43c2>)
    # 3 bcryptPrimitives.dll!ProcessPrng+0x3120   (0x74f844ca <bcryptPrimitives.dll+0x44ca>)
    # 4 bcryptPrimitives.dll!ProcessPrng+0x3cd8   (0x74f85082 <bcryptPrimitives.dll+0x5082>)
    # 5 bcryptPrimitives.dll!ProcessPrng+0x3d66   (0x74f85110 <bcryptPrimitives.dll+0x5110>)
    # 6 bcryptPrimitives.dll!ProcessPrng+0x3d24   (0x74f850ce <bcryptPrimitives.dll+0x50ce>)
    # 7 bcryptPrimitives.dll!ProcessPrng+0x3bd9   (0x74f84f83 <bcryptPrimitives.dll+0x4f83>)
    # 8 bcryptPrimitives.dll!ProcessPrng+0x34     (0x74f813de <bcryptPrimitives.dll+0x13de>)
    # 9 CRYPTBASE.dll!SystemFunction036+0x10     (0x74fe11e1 <CRYPTBASE.dll+0x11e1>)
    #10 RPCRT4.dll!UuidCreate          +0x11     (0x75ff80da <RPCRT4.dll+0x80da>)
    #11 combase.dll!DllGetClassObject  +0x4e4    (0x75bb28b2 <combase.dll+0x228b2>)
    Note: @0:00:22.966 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)
     
    Error #40: UNADDRESSABLE ACCESS: writing 0x0023dc98-0x0023dc9c 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng+0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng+0x304f   (0x74f843f9 <bcryptPrimitives.dll+0x43f9>)
    # 2 bcryptPrimitives.dll!ProcessPrng+0x3120   (0x74f844ca <bcryptPrimitives.dll+0x44ca>)
    # 3 bcryptPrimitives.dll!ProcessPrng+0x3cd8   (0x74f85082 <bcryptPrimitives.dll+0x5082>)
    # 4 bcryptPrimitives.dll!ProcessPrng+0x3d66   (0x74f85110 <bcryptPrimitives.dll+0x5110>)
    # 5 bcryptPrimitives.dll!ProcessPrng+0x3d24   (0x74f850ce <bcryptPrimitives.dll+0x50ce>)
    # 6 bcryptPrimitives.dll!ProcessPrng+0x3bd9   (0x74f84f83 <bcryptPrimitives.dll+0x4f83>)
    # 7 bcryptPrimitives.dll!ProcessPrng+0x34     (0x74f813de <bcryptPrimitives.dll+0x13de>)
    # 8 CRYPTBASE.dll!SystemFunction036+0x10     (0x74fe11e1 <CRYPTBASE.dll+0x11e1>)
    # 9 RPCRT4.dll!UuidCreate          +0x11     (0x75ff80da <RPCRT4.dll+0x80da>)
    #10 combase.dll!DllGetClassObject  +0x4e4    (0x75bb28b2 <combase.dll+0x228b2>)
    #11 combase.dll!DllGetClassObject  +0x9d1    (0x75bb2d9f <combase.dll+0x22d9f>)
    Note: @0:00:22.967 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)
     
    Error #41: UNADDRESSABLE ACCESS: writing 0x0023df38-0x0023df3c 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng+0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng+0x3192   (0x74f8453c <bcryptPrimitives.dll+0x453c>)
    # 2 bcryptPrimitives.dll!ProcessPrng+0x3cd8   (0x74f85082 <bcryptPrimitives.dll+0x5082>)
    # 3 bcryptPrimitives.dll!ProcessPrng+0x3d66   (0x74f85110 <bcryptPrimitives.dll+0x5110>)
    # 4 bcryptPrimitives.dll!ProcessPrng+0x3d24   (0x74f850ce <bcryptPrimitives.dll+0x50ce>)
    # 5 bcryptPrimitives.dll!ProcessPrng+0x3bd9   (0x74f84f83 <bcryptPrimitives.dll+0x4f83>)
    # 6 bcryptPrimitives.dll!ProcessPrng+0x34     (0x74f813de <bcryptPrimitives.dll+0x13de>)
    # 7 CRYPTBASE.dll!SystemFunction036+0x10     (0x74fe11e1 <CRYPTBASE.dll+0x11e1>)
    # 8 RPCRT4.dll!UuidCreate          +0x11     (0x75ff80da <RPCRT4.dll+0x80da>)
    # 9 combase.dll!DllGetClassObject  +0x4e4    (0x75bb28b2 <combase.dll+0x228b2>)
    #10 combase.dll!DllGetClassObject  +0x9d1    (0x75bb2d9f <combase.dll+0x22d9f>)
    #11 combase.dll!CoGetClassObject   +0xe08    (0x75bc4307 <combase.dll+0x34307>)
    Note: @0:00:22.968 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)
     
    Error #42: UNADDRESSABLE ACCESS: writing 0x0023dd88-0x0023dd8c 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng+0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng+0x2b5f   (0x74f83f09 <bcryptPrimitives.dll+0x3f09>)
    # 2 bcryptPrimitives.dll!ProcessPrng+0x3d77   (0x74f85121 <bcryptPrimitives.dll+0x5121>)
    # 3 bcryptPrimitives.dll!ProcessPrng+0x3d24   (0x74f850ce <bcryptPrimitives.dll+0x50ce>)
    # 4 bcryptPrimitives.dll!ProcessPrng+0x3bd9   (0x74f84f83 <bcryptPrimitives.dll+0x4f83>)
    # 5 bcryptPrimitives.dll!ProcessPrng+0x34     (0x74f813de <bcryptPrimitives.dll+0x13de>)
    # 6 CRYPTBASE.dll!SystemFunction036+0x10     (0x74fe11e1 <CRYPTBASE.dll+0x11e1>)
    # 7 RPCRT4.dll!UuidCreate          +0x11     (0x75ff80da <RPCRT4.dll+0x80da>)
    # 8 combase.dll!DllGetClassObject  +0x4e4    (0x75bb28b2 <combase.dll+0x228b2>)
    # 9 combase.dll!DllGetClassObject  +0x9d1    (0x75bb2d9f <combase.dll+0x22d9f>)
    #10 combase.dll!CoGetClassObject   +0xe08    (0x75bc4307 <combase.dll+0x34307>)
    #11 combase.dll!CoUninitialize     +0x702    (0x75ba9d40 <combase.dll+0x19d40>)
    Note: @0:00:22.969 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)
     
    Error #43: UNADDRESSABLE ACCESS: writing 0x0023dd88-0x0023dd8c 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng+0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng+0x2cc2   (0x74f8406c <bcryptPrimitives.dll+0x406c>)
    # 2 bcryptPrimitives.dll!ProcessPrng+0x3d77   (0x74f85121 <bcryptPrimitives.dll+0x5121>)
    # 3 bcryptPrimitives.dll!ProcessPrng+0x3d24   (0x74f850ce <bcryptPrimitives.dll+0x50ce>)
    # 4 bcryptPrimitives.dll!ProcessPrng+0x3bd9   (0x74f84f83 <bcryptPrimitives.dll+0x4f83>)
    # 5 bcryptPrimitives.dll!ProcessPrng+0x34     (0x74f813de <bcryptPrimitives.dll+0x13de>)
    # 6 CRYPTBASE.dll!SystemFunction036+0x10     (0x74fe11e1 <CRYPTBASE.dll+0x11e1>)
    # 7 RPCRT4.dll!UuidCreate          +0x11     (0x75ff80da <RPCRT4.dll+0x80da>)
    # 8 combase.dll!DllGetClassObject  +0x4e4    (0x75bb28b2 <combase.dll+0x228b2>)
    # 9 combase.dll!DllGetClassObject  +0x9d1    (0x75bb2d9f <combase.dll+0x22d9f>)
    #10 combase.dll!CoGetClassObject   +0xe08    (0x75bc4307 <combase.dll+0x34307>)
    #11 combase.dll!CoUninitialize     +0x702    (0x75ba9d40 <combase.dll+0x19d40>)
    Note: @0:00:22.970 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)
     
    Error #44: UNADDRESSABLE ACCESS: writing 0x0023de18-0x0023de1c 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng+0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng+0x2b5f   (0x74f83f09 <bcryptPrimitives.dll+0x3f09>)
    # 2 bcryptPrimitives.dll!ProcessPrng+0x2d50   (0x74f840fa <bcryptPrimitives.dll+0x40fa>)
    # 3 bcryptPrimitives.dll!ProcessPrng+0x53     (0x74f813fd <bcryptPrimitives.dll+0x13fd>)
    # 4 CRYPTBASE.dll!SystemFunction036+0x10     (0x74fe11e1 <CRYPTBASE.dll+0x11e1>)
    # 5 RPCRT4.dll!UuidCreate          +0x11     (0x75ff80da <RPCRT4.dll+0x80da>)
    # 6 combase.dll!DllGetClassObject  +0x4e4    (0x75bb28b2 <combase.dll+0x228b2>)
    # 7 combase.dll!DllGetClassObject  +0x9d1    (0x75bb2d9f <combase.dll+0x22d9f>)
    # 8 combase.dll!CoGetClassObject   +0xe08    (0x75bc4307 <combase.dll+0x34307>)
    # 9 combase.dll!CoUninitialize     +0x702    (0x75ba9d40 <combase.dll+0x19d40>)
    #10 combase.dll!CoInitializeEx     +0x41     (0x75ba9e37 <combase.dll+0x19e37>)
    #11 IMM32.dll!ImmCreateIMCC        +0x1015   (0x763d634b <IMM32.dll+0x634b>)
    Note: @0:00:22.975 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)
     
    Error #45: UNADDRESSABLE ACCESS: writing 0x0023de18-0x0023de1c 4 byte(s)
    # 0 bcryptPrimitives.dll!ProcessPrng+0x2a72   (0x74f83e1b <bcryptPrimitives.dll+0x3e1b>)
    # 1 bcryptPrimitives.dll!ProcessPrng+0x2cc2   (0x74f8406c <bcryptPrimitives.dll+0x406c>)
    # 2 bcryptPrimitives.dll!ProcessPrng+0x2d50   (0x74f840fa <bcryptPrimitives.dll+0x40fa>)
    # 3 bcryptPrimitives.dll!ProcessPrng+0x53     (0x74f813fd <bcryptPrimitives.dll+0x13fd>)
    # 4 CRYPTBASE.dll!SystemFunction036+0x10     (0x74fe11e1 <CRYPTBASE.dll+0x11e1>)
    # 5 RPCRT4.dll!UuidCreate          +0x11     (0x75ff80da <RPCRT4.dll+0x80da>)
    # 6 combase.dll!DllGetClassObject  +0x4e4    (0x75bb28b2 <combase.dll+0x228b2>)
    # 7 combase.dll!DllGetClassObject  +0x9d1    (0x75bb2d9f <combase.dll+0x22d9f>)
    # 8 combase.dll!CoGetClassObject   +0xe08    (0x75bc4307 <combase.dll+0x34307>)
    # 9 combase.dll!CoUninitialize     +0x702    (0x75ba9d40 <combase.dll+0x19d40>)
    #10 combase.dll!CoInitializeEx     +0x41     (0x75ba9e37 <combase.dll+0x19e37>)
    #11 IMM32.dll!ImmCreateIMCC        +0x1015   (0x763d634b <IMM32.dll+0x634b>)
    Note: @0:00:22.976 in thread 5740
    Note: instruction: mov    %esp -> 0xfffffff8(%esp)
     
    Error #46: UNINITIALIZED READ: reading register eax
    # 0 ntdll.dll!RtlCheckTokenMembershipEx    +0x1e0    (0x77ab587a <ntdll.dll+0x3587a>)
    # 1 KERNELBASE.dll!AllocateAndInitializeSid+0x2b     (0x75412206 <KERNELBASE.dll+0x12206>)
    # 2 KERNELBASE.dll!CheckTokenMembership    +0x2f     (0x75410359 <KERNELBASE.dll+0x10359>)
    # 3 IMM32.dll!ImmCreateIMCC                +0x715    (0x763d5a4b <IMM32.dll+0x5a4b>)
    # 4 IMM32.dll!ImmGetAppCompatFlags         +0x223    (0x763d403b <IMM32.dll+0x403b>)
    # 5 USER32.dll!GetScrollInfo               +0x879    (0x76415d2c <USER32.dll+0x15d2c>)
    # 6 USER32.dll!IsCharAlphaNumericW         +0x27f    (0x7641397f <USER32.dll+0x1397f>)
    # 7 USER32.dll!IsCharAlphaNumericW         +0x1c2    (0x764138c2 <USER32.dll+0x138c2>)
    # 8 USER32.dll!gapfnScSendMessage          +0x14a    (0x76407443 <USER32.dll+0x7443>)
    # 9 USER32.dll!IsThreadDesktopComposited   +0x15c    (0x76407630 <USER32.dll+0x7630>)
    #10 USER32.dll!ConsoleControl              +0x4b0    (0x76409e80 <USER32.dll+0x9e80>)
    #11 USER32.dll!ConsoleControl              +0x56d    (0x76409f3d <USER32.dll+0x9f3d>)
    Note: @0:00:23.061 in thread 5740
    Note: instruction: test   %eax %eax
     
    Error #47: UNINITIALIZED READ: reading register eax
    # 0 ntdll.dll!RtlCheckTokenMembershipEx    +0x1e0    (0x77ab587a <ntdll.dll+0x3587a>)
    # 1 KERNELBASE.dll!AllocateAndInitializeSid+0x2b     (0x75412206 <KERNELBASE.dll+0x12206>)
    # 2 KERNELBASE.dll!CheckTokenMembership    +0x2f     (0x75410359 <KERNELBASE.dll+0x10359>)
    # 3 IMM32.dll!CtfImmGetTMAEFlags           +0x9a     (0x763d520e <IMM32.dll+0x520e>)
    # 4 MSCTF.dll!CtfImeSelectEx               +0x2337   (0x7569e836 <MSCTF.dll+0xe836>)
    # 5 MSCTF.dll!CtfImeCreateThreadMgr        +0x183    (0x756a1845 <MSCTF.dll+0x11845>)
    # 6 MSCTF.dll!CtfImeCreateThreadMgr        +0xe2     (0x756a17a4 <MSCTF.dll+0x117a4>)
    # 7 MSCTF.dll!CtfImeCreateThreadMgr        +0x29     (0x756a16eb <MSCTF.dll+0x116eb>)
    # 8 IMM32.dll!ImmCreateIMCC                +0x7e5    (0x763d5b1b <IMM32.dll+0x5b1b>)
    # 9 IMM32.dll!ImmGetAppCompatFlags         +0x223    (0x763d403b <IMM32.dll+0x403b>)
    #10 USER32.dll!GetScrollInfo               +0x879    (0x76415d2c <USER32.dll+0x15d2c>)
    #11 USER32.dll!IsCharAlphaNumericW         +0x27f    (0x7641397f <USER32.dll+0x1397f>)
    Note: @0:00:23.095 in thread 5740
    Note: instruction: test   %eax %eax
     
    Error #48: UNINITIALIZED READ: reading register eax
    # 0 ntdll.dll!RtlCheckTokenMembershipEx    +0x1e0    (0x77ab587a <ntdll.dll+0x3587a>)
    # 1 KERNELBASE.dll!AllocateAndInitializeSid+0x2b     (0x75412206 <KERNELBASE.dll+0x12206>)
    # 2 KERNELBASE.dll!CheckTokenMembershipEx  +0x30     (0x754193ff <KERNELBASE.dll+0x193ff>)
    # 3 MSCTF.dll!CtfImeSelectEx               +0x2394   (0x7569e893 <MSCTF.dll+0xe893>)
    # 4 MSCTF.dll!CtfImeCreateThreadMgr        +0x183    (0x756a1845 <MSCTF.dll+0x11845>)
    # 5 MSCTF.dll!CtfImeCreateThreadMgr        +0xe2     (0x756a17a4 <MSCTF.dll+0x117a4>)
    # 6 MSCTF.dll!CtfImeCreateThreadMgr        +0x29     (0x756a16eb <MSCTF.dll+0x116eb>)
    # 7 IMM32.dll!ImmCreateIMCC                +0x7e5    (0x763d5b1b <IMM32.dll+0x5b1b>)
    # 8 IMM32.dll!ImmGetAppCompatFlags         +0x223    (0x763d403b <IMM32.dll+0x403b>)
    # 9 USER32.dll!GetScrollInfo               +0x879    (0x76415d2c <USER32.dll+0x15d2c>)
    #10 USER32.dll!IsCharAlphaNumericW         +0x27f    (0x7641397f <USER32.dll+0x1397f>)
    #11 USER32.dll!IsCharAlphaNumericW         +0x1c2    (0x764138c2 <USER32.dll+0x138c2>)
    Note: @0:00:23.102 in thread 5740
    Note: instruction: test   %eax %eax
     
    Error #49: UNINITIALIZED READ: reading register ebx
    # 0 USER32.dll!EnumChildWindows             +0x55     (0x7641182d <USER32.dll+0x1182d>)
    # 1 UxTheme.dll!GetThemePartSize            +0x6f2    (0x74287f53 <UxTheme.dll+0x7f53>)
    # 2 UxTheme.dll!GetThemePartSize            +0x631    (0x74287e92 <UxTheme.dll+0x7e92>)
    # 3 UxTheme.dll!Ordinal49                   +0x450    (0x742907d8 <UxTheme.dll+0x107d8>)
    # 4 USER32.dll!FillRect                     +0x18a    (0x7640b593 <USER32.dll+0xb593>)
    # 5 USER32.dll!ConsoleControl               +0x4b0    (0x76409e80 <USER32.dll+0x9e80>)
    # 6 USER32.dll!ShowWindow                   +0x48     (0x7640f723 <USER32.dll+0xf723>)
    # 7 USER32.dll!ConsoleControl               +0x56d    (0x76409f3d <USER32.dll+0x9f3d>)
    # 8 USER32.dll!DialogBoxIndirectParamAorW   +0x47     (0x7642c193 <USER32.dll+0x2c193>)
    # 9 USER32.dll!GetDialogBaseUnits           +0x3fd    (0x7642c134 <USER32.dll+0x2c134>)
    #10 USER32.dll!SoftModalMessageBox          +0x5c0    (0x7643737a <USER32.dll+0x3737a>)
    #11 USER32.dll!MessageBoxIndirectW          +0x1f4    (0x76436da5 <USER32.dll+0x36da5>)
    Note: @0:00:24.201 in thread 5740
    Note: instruction: test   %ebx %ebx
     
    Error #50: UNINITIALIZED READ: reading register edi
    # 0 USER32.dll!IsWindow                     +0x3e     (0x7640903e <USER32.dll+0x903e>)
    # 1 UxTheme.dll!BufferedPaintInit           +0x74     (0x7428581a <UxTheme.dll+0x581a>)
    # 2 USER32.dll!EnumChildWindows             +0xfc     (0x764118d5 <USER32.dll+0x118d5>)
    # 3 UxTheme.dll!GetThemePartSize            +0x6f2    (0x74287f53 <UxTheme.dll+0x7f53>)
    # 4 UxTheme.dll!GetThemePartSize            +0x631    (0x74287e92 <UxTheme.dll+0x7e92>)
    # 5 UxTheme.dll!Ordinal49                   +0x450    (0x742907d8 <UxTheme.dll+0x107d8>)
    # 6 USER32.dll!FillRect                     +0x18a    (0x7640b593 <USER32.dll+0xb593>)
    # 7 USER32.dll!ConsoleControl               +0x4b0    (0x76409e80 <USER32.dll+0x9e80>)
    # 8 USER32.dll!ShowWindow                   +0x48     (0x7640f723 <USER32.dll+0xf723>)
    # 9 USER32.dll!ConsoleControl               +0x56d    (0x76409f3d <USER32.dll+0x9f3d>)
    #10 USER32.dll!DialogBoxIndirectParamAorW   +0x47     (0x7642c193 <USER32.dll+0x2c193>)
    #11 USER32.dll!GetDialogBaseUnits           +0x3fd    (0x7642c134 <USER32.dll+0x2c134>)
    Note: @0:00:24.204 in thread 5740
    Note: instruction: test   %edi %edi
     
    Error #51: UNINITIALIZED READ: reading register ecx
    # 0 USER32.dll!FillRect                     +0xb7     (0x7640b4bf <USER32.dll+0xb4bf>)
    # 1 UxTheme.dll!BufferedPaintInit           +0xaf     (0x74285855 <UxTheme.dll+0x5855>)
    # 2 USER32.dll!EnumChildWindows             +0xfc     (0x764118d5 <USER32.dll+0x118d5>)
    # 3 UxTheme.dll!GetThemePartSize            +0x6f2    (0x74287f53 <UxTheme.dll+0x7f53>)
    # 4 UxTheme.dll!GetThemePartSize            +0x631    (0x74287e92 <UxTheme.dll+0x7e92>)
    # 5 UxTheme.dll!Ordinal49                   +0x450    (0x742907d8 <UxTheme.dll+0x107d8>)
    # 6 USER32.dll!FillRect                     +0x18a    (0x7640b593 <USER32.dll+0xb593>)
    # 7 USER32.dll!ConsoleControl               +0x4b0    (0x76409e80 <USER32.dll+0x9e80>)
    # 8 USER32.dll!ShowWindow                   +0x48     (0x7640f723 <USER32.dll+0xf723>)
    # 9 USER32.dll!ConsoleControl               +0x56d    (0x76409f3d <USER32.dll+0x9f3d>)
    #10 USER32.dll!DialogBoxIndirectParamAorW   +0x47     (0x7642c193 <USER32.dll+0x2c193>)
    #11 USER32.dll!GetDialogBaseUnits           +0x3fd    (0x7642c134 <USER32.dll+0x2c134>)
    Note: @0:00:24.205 in thread 5740
    Note: instruction: cmp    %ecx 0x04(%eax)
     
    Error #52: UNINITIALIZED READ: reading register cx
    # 0 USER32.dll!FillRect                     +0xe7     (0x7640b4ef <USER32.dll+0xb4ef>)
    # 1 UxTheme.dll!BufferedPaintInit           +0xaf     (0x74285855 <UxTheme.dll+0x5855>)
    # 2 USER32.dll!EnumChildWindows             +0xfc     (0x764118d5 <USER32.dll+0x118d5>)
    # 3 UxTheme.dll!GetThemePartSize            +0x6f2    (0x74287f53 <UxTheme.dll+0x7f53>)
    # 4 UxTheme.dll!GetThemePartSize            +0x631    (0x74287e92 <UxTheme.dll+0x7e92>)
    # 5 UxTheme.dll!Ordinal49                   +0x450    (0x742907d8 <UxTheme.dll+0x107d8>)
    # 6 USER32.dll!FillRect                     +0x18a    (0x7640b593 <USER32.dll+0xb593>)
    # 7 USER32.dll!ConsoleControl               +0x4b0    (0x76409e80 <USER32.dll+0x9e80>)
    # 8 USER32.dll!ShowWindow                   +0x48     (0x7640f723 <USER32.dll+0xf723>)
    # 9 USER32.dll!ConsoleControl               +0x56d    (0x76409f3d <USER32.dll+0x9f3d>)
    #10 USER32.dll!DialogBoxIndirectParamAorW   +0x47     (0x7642c193 <USER32.dll+0x2c193>)
    #11 USER32.dll!GetDialogBaseUnits           +0x3fd    (0x7642c134 <USER32.dll+0x2c134>)
    Note: @0:00:24.206 in thread 5740
    Note: instruction: data16 cmp    %cx 0x0a(%eax)
     
    Error #53: UNINITIALIZED READ: reading register edi
    # 0 USER32.dll!GetWindowLongW               +0x3e     (0x76408d42 <USER32.dll+0x8d42>)
    # 1 UxTheme.dll!BufferedPaintInit           +0xda     (0x74285880 <UxTheme.dll+0x5880>)
    # 2 USER32.dll!EnumChildWindows             +0xfc     (0x764118d5 <USER32.dll+0x118d5>)
    # 3 UxTheme.dll!GetThemePartSize            +0x6f2    (0x74287f53 <UxTheme.dll+0x7f53>)
    # 4 UxTheme.dll!GetThemePartSize            +0x631    (0x74287e92 <UxTheme.dll+0x7e92>)
    # 5 UxTheme.dll!Ordinal49                   +0x450    (0x742907d8 <UxTheme.dll+0x107d8>)
    # 6 USER32.dll!FillRect                     +0x18a    (0x7640b593 <USER32.dll+0xb593>)
    # 7 USER32.dll!ConsoleControl               +0x4b0    (0x76409e80 <USER32.dll+0x9e80>)
    # 8 USER32.dll!ShowWindow                   +0x48     (0x7640f723 <USER32.dll+0xf723>)
    # 9 USER32.dll!ConsoleControl               +0x56d    (0x76409f3d <USER32.dll+0x9f3d>)
    #10 USER32.dll!DialogBoxIndirectParamAorW   +0x47     (0x7642c193 <USER32.dll+0x2c193>)
    #11 USER32.dll!GetDialogBaseUnits           +0x3fd    (0x7642c134 <USER32.dll+0x2c134>)
    Note: @0:00:24.207 in thread 5740
    Note: instruction: test   %edi %edi
     
    Error #54: UNINITIALIZED READ: reading register eax
    # 0 USER32.dll!DrawStateA                  +0xda4    (0x7645dea9 <USER32.dll+0x5dea9>)
    # 1 USER32.dll!IsWow64Message              +0xe974   (0x76475d41 <USER32.dll+0x75d41>)
    # 2 USER32.dll!gapfnScSendMessage          +0x14a    (0x76407443 <USER32.dll+0x7443>)
    # 3 USER32.dll!Ordinal2518                 +0x5f5    (0x7641d8a0 <USER32.dll+0x1d8a0>)
    # 4 USER32.dll!Ordinal2518                 +0x34a    (0x7641d5f5 <USER32.dll+0x1d5f5>)
    # 5 USER32.dll!Ordinal2518                 +0x708    (0x7641d9b3 <USER32.dll+0x1d9b3>)
    # 6 USER32.dll!gapfnScSendMessage          +0x14a    (0x76407443 <USER32.dll+0x7443>)
    # 7 USER32.dll!IsThreadDesktopComposited   +0x15c    (0x76407630 <USER32.dll+0x7630>)
    # 8 USER32.dll!ChangeDisplaySettingsExW    +0x30a    (0x7641c31a <USER32.dll+0x1c31a>)
    # 9 USER32.dll!SendMessageW                +0xe2     (0x7640aa8e <USER32.dll+0xaa8e>)
    #10 USER32.dll!LoadCursorFromFileW         +0x4a4    (0x764424a4 <USER32.dll+0x424a4>)
    #11 USER32.dll!LoadCursorFromFileW         +0x44f    (0x7644244f <USER32.dll+0x4244f>)
    Note: @0:01:07.425 in thread 5740
    Note: instruction: cmp    %eax $0x00000001
     
    Error #55: POSSIBLE LEAK 73 direct bytes 0x00523198-0x005231e1 + 0 indirect bytes
    # 0 msvcrt.dll!_malloc_crt
    # 1 msvcrt.dll!__setargv 
    # 2 msvcrt.dll!__getmainargs
    # 3 GPC-Version2.exe!?               +0x0      (0x0040104a <GPC-Version2.exe+0x104a>)
    # 4 GPC-Version2.exe!?               +0x0      (0x00401471 <GPC-Version2.exe+0x1471>)
    # 5 KERNEL32.dll!BaseThreadInitThunk +0x11     (0x76861866 <KERNEL32.dll+0x1866>)
    # 6 ntdll.dll!LdrInitializeThunk     +0x1a2    (0x77ab68f1 <ntdll.dll+0x368f1>)
    # 7 ntdll.dll!LdrInitializeThunk     +0x14e    (0x77ab689d <ntdll.dll+0x3689d>)
     
    Error #56: POSSIBLE LEAK 12 direct bytes 0x02ae3458-0x02ae3464 + 0 indirect bytes
    # 0 libgcc_s_sjlj-1.dll!_emutls_get_address                              +0xc3     (0x6ced45a4 <libgcc_s_sjlj-1.dll+0x145a4>)
    # 1 libstdc++-6.dll!_cxa_get_globals                                     +0xe      (0x6fcca74f <libstdc++-6.dll+0x8a74f>)
    # 2 libstdc++-6.dll!ZSt18uncaught_exceptionv                             +0x7      (0x6fcc0ec8 <libstdc++-6.dll+0x80ec8>)
    # 3 Qt5Core.dll!Z4qInfv                                                  +0x363    (0x6888d734 <Qt5Core.dll+0xd734>)
    # 4 Qt5Core.dll!ZNK14QMessageLogger5fatalEPKcz                           +0x4f     (0x6888dc50 <Qt5Core.dll+0xdc50>)
    # 5 Qt5Gui.dll!ZN22QGuiApplicationPrivate25createPlatformIntegrationEv   +0xce5    (0x6195a6f6 <Qt5Gui.dll+0x1a6f6>)
    # 6 Qt5Gui.dll!ZN22QGuiApplicationPrivate21createEventDispatcherEv       +0x44     (0x6195a785 <Qt5Gui.dll+0x1a785>)
    # 7 Qt5Core.dll!ZN16QCoreApplication4initEv                              +0x83     (0x68a360a4 <Qt5Core.dll+0x1b60a4>)
    # 8 Qt5Core.dll!ZN16QCoreApplicationC2ER23QCoreApplicationPrivate        +0x73     (0x68a36154 <Qt5Core.dll+0x1b6154>)
    # 9 GPC-Version2.exe!?                                                   +0x0      (0x004013fa <GPC-Version2.exe+0x13fa>)
    #10 KERNEL32.dll!BaseThreadInitThunk                                     +0x11     (0x76861866 <KERNEL32.dll+0x1866>)
    #11 ntdll.dll!LdrInitializeThunk                                         +0x1a2    (0x77ab68f1 <ntdll.dll+0x368f1>)
     
    Error #57: POSSIBLE LEAK 80 direct bytes 0x0062fdf8-0x0062fe48 + 0 indirect bytes
    # 0 GDI32.dll!ExtTextOutA            +0x39     (0x76582235 <GDI32.dll+0x52235>)
    # 1 GDI32.dll!UspAllocTemp           +0x5365   (0x76552e18 <GDI32.dll+0x22e18>)
    # 2 GDI32.dll!UspAllocTemp           +0x4f27   (0x765529da <GDI32.dll+0x229da>)
    # 3 GDI32.dll!UspAllocTemp           +0x3d50   (0x76551803 <GDI32.dll+0x21803>)
    # 4 GDI32.dll!GdiRealizationInfo     +0x6ad    (0x7654d26a <GDI32.dll+0x1d26a>)
    # 5 GDI32.dll!GdiRealizationInfo     +0x1b5    (0x7654cd72 <GDI32.dll+0x1cd72>)
    # 6 GDI32.dll!GdiRealizationInfo     +0x11a    (0x7654ccd7 <GDI32.dll+0x1ccd7>)
    # 7 GDI32.dll!ScriptStringAnalyse    +0x2b3    (0x7653bdf5 <GDI32.dll+0xbdf5>)
    # 8 GDI32.dll!LpkDrawTextEx          +0x3ec    (0x76542fb3 <GDI32.dll+0x12fb3>)
    # 9 GDI32.dll!LpkDrawTextEx          +0x31     (0x76542bf8 <GDI32.dll+0x12bf8>)
    #10 USER32.dll!DrawTextW             +0x3d7    (0x7642649d <USER32.dll+0x2649d>)
    #11 USER32.dll!DrawTextW             +0xd3     (0x76426199 <USER32.dll+0x26199>)
     
    Error #58: LEAK 52 direct bytes 0x0065aa00-0x0065aa34 + 0 indirect bytes
    # 0 IMM32.dll!ImmCreateIMCC                +0x12df   (0x763d6615 <IMM32.dll+0x6615>)
    # 1 USER32.dll!GetScrollInfo               +0x879    (0x76415d2c <USER32.dll+0x15d2c>)
    # 2 USER32.dll!IsCharAlphaNumericW         +0x27f    (0x7641397f <USER32.dll+0x1397f>)
    # 3 USER32.dll!IsCharAlphaNumericW         +0x1c2    (0x764138c2 <USER32.dll+0x138c2>)
    # 4 USER32.dll!gapfnScSendMessage          +0x14a    (0x76407443 <USER32.dll+0x7443>)
    # 5 USER32.dll!IsThreadDesktopComposited   +0x15c    (0x76407630 <USER32.dll+0x7630>)
    # 6 USER32.dll!ConsoleControl              +0x4b0    (0x76409e80 <USER32.dll+0x9e80>)
    # 7 USER32.dll!ConsoleControl              +0x56d    (0x76409f3d <USER32.dll+0x9f3d>)
    # 8 ntdll.dll!KiUserCallbackDispatcher     +0x2d     (0x77a9688e <ntdll.dll+0x1688e>)
    # 9 USER32.dll!gapfnScSendMessage          +0x14a    (0x76407443 <USER32.dll+0x7443>)
    #10 USER32.dll!Ordinal2518                 +0xa13    (0x7641dcbe <USER32.dll+0x1dcbe>)
    #11 USER32.dll!Ordinal2518                 +0x34a    (0x7641d5f5 <USER32.dll+0x1d5f5>)
     
    Error #59: LEAK 264 direct bytes 0x0065acc0-0x0065adc8 + 0 indirect bytes
    # 0 combase.dll!CoCreateFreeThreadedMarshaler  +0x3b0    (0x75bad621 <combase.dll+0x1d621>)
    # 1 combase.dll!CoCreateFreeThreadedMarshaler  +0x4b2    (0x75bad723 <combase.dll+0x1d723>)
    # 2 combase.dll!CoInitializeEx                 +0x41     (0x75ba9e37 <combase.dll+0x19e37>)
    # 3 IMM32.dll!ImmCreateIMCC                    +0x1015   (0x763d634b <IMM32.dll+0x634b>)
    # 4 IMM32.dll!ImmGetAppCompatFlags             +0x223    (0x763d403b <IMM32.dll+0x403b>)
    # 5 USER32.dll!GetScrollInfo                   +0x879    (0x76415d2c <USER32.dll+0x15d2c>)
    # 6 USER32.dll!IsCharAlphaNumericW             +0x27f    (0x7641397f <USER32.dll+0x1397f>)
    # 7 USER32.dll!IsCharAlphaNumericW             +0x1c2    (0x764138c2 <USER32.dll+0x138c2>)
    # 8 USER32.dll!gapfnScSendMessage              +0x14a    (0x76407443 <USER32.dll+0x7443>)
    # 9 USER32.dll!IsThreadDesktopComposited       +0x15c    (0x76407630 <USER32.dll+0x7630>)
    #10 USER32.dll!ConsoleControl                  +0x4b0    (0x76409e80 <USER32.dll+0x9e80>)
    #11 USER32.dll!ConsoleControl                  +0x56d    (0x76409f3d <USER32.dll+0x9f3d>)
     
    Error #60: POSSIBLE LEAK 24 direct bytes 0x0065adf0-0x0065ae08 + 0 indirect bytes
    # 0 combase.dll!CoGetClassObject               +0x6f2    (0x75bc3bf1 <combase.dll+0x33bf1>)
    # 1 combase.dll!CoGetClassObject               +0x743    (0x75bc3c42 <combase.dll+0x33c42>)
    # 2 combase.dll!CoCreateFreeThreadedMarshaler  +0x2f5    (0x75bad566 <combase.dll+0x1d566>)
    # 3 combase.dll!CoCreateFreeThreadedMarshaler  +0x4b2    (0x75bad723 <combase.dll+0x1d723>)
    # 4 combase.dll!CoInitializeEx                 +0x41     (0x75ba9e37 <combase.dll+0x19e37>)
    # 5 IMM32.dll!ImmCreateIMCC                    +0x1015   (0x763d634b <IMM32.dll+0x634b>)
    # 6 IMM32.dll!ImmGetAppCompatFlags             +0x223    (0x763d403b <IMM32.dll+0x403b>)
    # 7 USER32.dll!GetScrollInfo                   +0x879    (0x76415d2c <USER32.dll+0x15d2c>)
    # 8 USER32.dll!IsCharAlphaNumericW             +0x27f    (0x7641397f <USER32.dll+0x1397f>)
    # 9 USER32.dll!IsCharAlphaNumericW             +0x1c2    (0x764138c2 <USER32.dll+0x138c2>)
    #10 USER32.dll!gapfnScSendMessage              +0x14a    (0x76407443 <USER32.dll+0x7443>)
    #11 USER32.dll!IsThreadDesktopComposited       +0x15c    (0x76407630 <USER32.dll+0x7630>)
     
    DUPLICATE ERROR COUNTS:
    	Error #   3:      5
    	Error #   6:      2
    	Error #   8:      2
    	Error #  10:     11
    	Error #  12:      2
    	Error #  20:     11
    	Error #  23:      2
    	Error #  25:     18
    	Error #  26:      3
    	Error #  27:      2
    	Error #  29:     15
    	Error #  30:      3
    	Error #  31:      3
    	Error #  33:      3
    	Error #  34:      8
    	Error #  35:      3
    	Error #  36:     18
    	Error #  37:      3
    	Error #  38:      3
    	Error #  39:     15
    	Error #  40:      3
    	Error #  41:      3
    	Error #  43:      3
    	Error #  44:      8
    	Error #  45:      3
    	Error #  49:      3
    	Error #  50:      3
    	Error #  51:      3
    	Error #  52:      3
    	Error #  53:      3
     
    SUPPRESSIONS USED:
     
    ERRORS FOUND:
         21 unique,   120 total unaddressable access(es)
         33 unique,    71 total uninitialized access(es)
          0 unique,     0 total invalid heap argument(s)
          0 unique,     0 total GDI usage error(s)
          0 unique,     0 total warning(s)
          2 unique,     2 total,    316 byte(s) of leak(s)
          4 unique,     4 total,    189 byte(s) of possible leak(s)
    ERRORS IGNORED:
        605 still-reachable allocation(s)
             (re-run with "-show_reachable" for details)
    "
    Si quelqu'un sait me dire dans quelle direction je dois chercher, ce serait vraiment sympa.
    Merci d'avance.

  6. #6
    Futur Membre du Club
    Profil pro
    Inscrit en
    Novembre 2010
    Messages
    8
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Novembre 2010
    Messages : 8
    Points : 5
    Points
    5
    Par défaut ... et fin ?
    J'ai désinstallé Qt 5, réinstallé Qt 4.8.4 et maintenant tout fonctionne sans souci.
    Ca restera un mystère pour moi...
    Encore merci pour vos conseils !

  7. #7
    Responsable 2D/3D/Jeux


    Avatar de LittleWhite
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Mai 2008
    Messages
    26 826
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Ingénieur développement logiciels

    Informations forums :
    Inscription : Mai 2008
    Messages : 26 826
    Points : 218 287
    Points
    218 287
    Billets dans le blog
    117
    Par défaut
    Une incompatibilité entre les .lib liés et les .DLL mis avec le programme, peut être ?
    Vous souhaitez participer à la rubrique 2D/3D/Jeux ? Contactez-moi

    Ma page sur DVP
    Mon Portfolio

    Qui connaît l'erreur, connaît la solution.

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 3
    Dernier message: 11/05/2015, 16h36
  2. Réponses: 2
    Dernier message: 20/02/2012, 10h13
  3. Réponses: 4
    Dernier message: 14/02/2012, 23h50
  4. Réponses: 0
    Dernier message: 12/03/2010, 14h24
  5. Runtime error mon application ne s'execute pas
    Par amireve dans le forum Langage
    Réponses: 4
    Dernier message: 23/04/2006, 18h45

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