wrc: Don't match a po message if a same msgid message is defined, but its msgctxt is null.

This commit is contained in:
Akihiro Sagawa 2011-01-30 00:39:32 +09:00 committed by Alexandre Julliard
parent 81bbd17c40
commit 96361b3951
1 changed files with 1 additions and 1 deletions

View File

@ -364,7 +364,7 @@ static po_message_t find_message( po_file_t po, const char *msgid, const char *m
{
if (strcmp( po_message_msgid( msg ), msgid )) continue;
if (!msgctxt) break;
if (!(context = po_message_msgctxt( msg ))) break;
if (!(context = po_message_msgctxt( msg ))) continue;
if (!strcmp( context, msgctxt )) break;
}
return msg;