Bug 1518254 Comment 2 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

Minimal STR:

### Using curl from with a Mac library:

```
curl 'https://symbols.mozilla.org/symbolicate/v5' \
--data '{"memoryMap":[["libGLImage.dylib","B5464F1AB9363BEE97CF3806AD1A9E680"]],"stacks":[[[0,27278]]]}'
```

returns:

```
{"results":[{"stacks":[[{"module_offset":"0x6a8e","module":"libGLImage.dylib","frame":0}]],"found_modules":{"libGLImage.dylib\/B5464F1AB9363BEE97CF3806AD1A9E680":false}}]}
```

### Using curl with a Windows library:

```
curl 'https://symbols.mozilla.org/symbolicate/v5' \
--data '{"memoryMap":[["xul.pdb","7F0A9D9E05F2045B2ACDE186459DCDFC1"]],"stacks":[[[0,20825192]]]}'
```

Response:

```
{"error": "Internal Server Error"}
```
Minimal STR:

### Using curl from with a Mac library:

```
curl 'https://symbols.mozilla.org/symbolicate/v5' \
--data '{"memoryMap":[["libGLImage.dylib","B5464F1AB9363BEE97CF3806AD1A9E680"]],"stacks":[[[0,27278]]]}'
```

Response:

```
{"results":[{"stacks":[[{"module_offset":"0x6a8e","module":"libGLImage.dylib","frame":0}]],"found_modules":{"libGLImage.dylib\/B5464F1AB9363BEE97CF3806AD1A9E680":false}}]}
```

### Using curl with a Windows library:

```
curl 'https://symbols.mozilla.org/symbolicate/v5' \
--data '{"memoryMap":[["xul.pdb","7F0A9D9E05F2045B2ACDE186459DCDFC1"]],"stacks":[[[0,20825192]]]}'
```

Response:

```
{"error": "Internal Server Error"}
```

Back to Bug 1518254 Comment 2