Skip to content

Instantly share code, notes, and snippets.

@emdeesee
Created January 10, 2018 00:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emdeesee/309b784e51331d0ef38577bde7c190f1 to your computer and use it in GitHub Desktop.
Save emdeesee/309b784e51331d0ef38577bde7c190f1 to your computer and use it in GitHub Desktop.
Anonymized example code fragment
576 /* Get all the pieces into separate buckets. */
577 list_type** connected_list = get_connected_buckets( new_bucket );
578 free_bucket_list( new_poly );
579 new_bucket = NULL;
580
581 new_bucket = connected_list[0];
+582 ASSERT(new_bucket);
The assertion on line 582 fires. [... comment continues]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment