Skip to content

Instantly share code, notes, and snippets.

View ItsPepperpot's full-sized avatar

Oliver Bevan ItsPepperpot

  • Swansea, United Kingdom
  • 09:13 (UTC +01:00)
View GitHub Profile

Bowl Storage

A memory corrpution bug triggered in part by a dangling pointer

Dangling Pointer

After initializing the scene, whilst initializing the player, there is a code path that will initialize a global containing the incrediball model instance: xModelInstance* s_incrediball_model_instance. It achieves this by searching for a loaded asset with the hash incrediball_ball. If it is found, it will allocate an xModelInstance from it and store it into s_incrediball_model_instance. If it is not found, s_incrediball_model_instance will be set to null.

The aforementioned code path is ONLY taken when the scene player mapping contains at least one of the player tags listed in the table below. This means that for scenes with none of these player tags, s_incrediball_model_instance will not be initialized.

@ItsPepperpot
ItsPepperpot / pack.mcmeta
Created January 9, 2018 00:07
Minecraft Resource Pack MCMETA file
{
"pack": {
"pack_format": 3,
"description": "My Resource Pack"
},
"language": {
"LANG_COUNTRY": {
"name": "My Custom Language",
"region": "Country/Region name",
"bidirectional": false
@andyyou
andyyou / gist:3052671
Created July 5, 2012 09:46
C# Controls abbreviation
btn Button chk CheckBox ckl CheckedListBox
cmb ComboBox dtp DateTimePicker lbl Label
llb LinkLabel lst ListBox lvw ListView
mtx MaskedTextBox cdr MonthCalendar icn NotifyIcon
nud NumeircUpDown pic PictureBox prg ProgressBar
rdo RadioButton rtx RichTextBox txt TextBox
tip ToolTip tvw TreeView wbs WebBrowser
容器
flp FlowLayoutPanel grp GroupBox pnl Panel