Ticket #30083

Avoid overflow of "int" in the "MallocerFrrer"

Eröffnet am: 2012-11-13 12:26 Letztes Update: 2012-11-14 17:52

Auswertung:
Verantwortlicher:
Typ:
Status:
Geschlossen
Komponente:
(Keine)
Meilenstein:
Priorität:
6
Schweregrad:
6
Lösung:
Gefixt
Datei:
Keine

Details

1)Type of arguments for size of array is modified to size_t from int
2)To avoid overflow, way to calculate "requiredMalloc" is modified to

  double requiredMalloc = static_cast<double>(size1);
                         *static_cast<double>(size2);
                         *static_cast<double>(sizeof(T));

3)To check the amount of allocated heap in more detail, variables for address should be counted in the "requiredMalloc"

Ticket-Verlauf (3/3 Historien)

2012-11-13 12:26 Aktualisiert von: mikiya_fujii
  • New Ticket "Avoid overflow of "int" in the "MallocerFrrer"" created
2012-11-13 12:27 Aktualisiert von: mikiya_fujii
  • Details Updated
2012-11-14 17:52 Aktualisiert von: mikiya_fujii
  • Lösung Update from Keine to Gefixt
  • Status Update from Offen to Geschlossen
  • Ticket Close date is changed to 2012-11-14 17:52
Kommentar

Fixed at r1117. Then MallocerFreer is refactored at r1118.

Dateianhangliste

Keine Anhänge

Bearbeiten

Please login to add comment to this ticket » Anmelden