一次 dump 分析的复盘

首先有主站的运营同学反馈某个用户的投稿工具一选择上传视频就崩溃,100% 重现。

要到 crash dump 之后挂上 windbg,首先用 lmvm bililive 检查一下用户使用的版本:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Image path: D:\ugc_assistant\2.0.0.1054\bililive.dll
Image name: bililive.dll
Browse all global symbols functions data
Timestamp: Fri Sep 1 17:53:54 2017 (59A92E32)
CheckSum: 00A12C47
ImageSize: 00A34000
File version: 2.0.0.1054
Product version: 2.0.0.1054
File flags: 0 (Mask 17)
File OS: 4 Unknown Win32
File type: 1.0 App
File date: 00000000.00000000
Translations: 0409.04b0
CompanyName: bilibili
ProductName: bilibili投稿工具
InternalName: bililive_dll
OriginalFilename: bililive.dll

Read More

发现一个(疑似)VS 2013 lambda 实现的 Bug

考虑如下代码段:

#include <iostream>

Read More

Monthly Read Posts in Oct 2017

Coroutines and Fibers. Why and When

所以什么时候各大语言的 coroutine 标准化工作可以结束

Read More

Emulate Haskell Infix Operator in CPP

Usage at a glance

#include <iostream>

Read More

一个轻量型的 Command-Mapping Macros

某 Bililive 沿用了 Chromium 负责在 UI 层不同模块通讯的 command/handler 的机制,但是因为 Chromium 对 command 机制使用得很节制,因此相关的代码量不多,其处理函数一直是一个大大的 switch...case

Read More

Monthly Read Posts in Sep 2017

The Horror of the Standard Library

一个 allocator 引发的惨案…


CppCon2015: Extreme Type Safety with Opaque Typedefs

Read More

Fix 使用 GDB 调试 Clang 编译的程序时标准库类型始终显示 incomplete type

现象描述

系统是 Linux mint 18,其实就是 ubuntu 16.04 LTS,所用的 clang 版本是 apt 默认的 3.8;gdb 使用系统自带。

Read More