Search Issue Tracker
Won't Fix
Votes
0
Found in
5.6.1f1
Issue ID
920965
Regression
No
[OS X] Unity Editor crashes after clicking play on a Vuforia's project if a path to this project contains non-ASCII symbols
To reproduce:
1. Download project attached by the user (or set up vuforia's project with AR camera)
2. Place this project to the folder with non-ASCII symbols (for example 冰淇淋)
3. Open it in the Editor
4. Open "test" scene and hit play
Expected: Scene is played without any crashes.
Actual: Unity crashes after hitting play.
Reproduced with: 5.5.0f3, 5.6.2p1, 2017.1.0f1, 2017.2.0b1
Issue happens only on Mac OS X.
Workaround: remove non-ASCII symbols from your folders names.
RESOLUTION: WONTFIX
The issue has been caused by a bug in Vuforia. During initialization the following happens internally in the plugin:
1. [NSFileManager currentDirectoryPath] is used to retrieve current directory path
2. "QCAR" is appended to it using [NSString stringByAppendingPathComponent]
3. C string representation is retrieved using [NSString cStringUsingEncoding]. The value 1 is passed
as the encoding parameter, which corresponds to NSASCIIStringEncoding.
4. An attempt is made to copy the returned string via strcpy.
The C string representation retrieved in step 3 is NULL, because non-ASCII characters can't be represented (see
https://developer.apple.com/documentation/foundation/nsstring/1408489-cstringusingencoding). The plugin calls
strcpy in step 4 without checking for NULL, thus the crash happens.
Unfortunately there's nothing we can do about this bug. Please contact Vuforia and say that this issue
has been investigated by Unity and identified as a bug in Vuforia. Providing the findings above to Vuforia
will speed up their resolution process.
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Keywords on Material Variants aren't automatically saved when changed on original Material through Shader Graph
- Light Probes get baked when calling LightProbes.Tetrahedralize
- Shadows flicker and cause visual artifacts when modifying a GameObject's bounds using Swizzle (Y Mask) and Sine Time nodes
- [WebGL] Frame rate drops by 5-20 fps when moving cursor or touch input in the Player
- Light bleeds when using box shaped spotlight with specific Emission Range values
Add comment